By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 1560
Collapse All | Expand All

(-)b/tools/designer/designer/mainwindow.cpp (-2 / +2 lines)
Lines 129-135 Link Here
129
extern TQObject* qwf_form_object;
129
extern TQObject* qwf_form_object;
130
extern TQString *qwf_plugin_dir;
130
extern TQString *qwf_plugin_dir;
131
131
132
MainWindow *MainWindow::self = 0;
132
Q_EXPORT MainWindow *MainWindow::self = 0;
133
133
134
TQString assistantPath()
134
TQString assistantPath()
135
{
135
{
Lines 150-156 Link Here
150
}
150
}
151
151
152
152
153
MainWindow::MainWindow( bool asClient, bool single, const TQString &plgDir )
153
Q_EXPORT MainWindow::MainWindow( bool asClient, bool single, const TQString &plgDir )
154
    : TQMainWindow( 0, "designer_mainwindow", WType_TopLevel | (single ? 0 : WDestructiveClose) | WGroupLeader ),
154
    : TQMainWindow( 0, "designer_mainwindow", WType_TopLevel | (single ? 0 : WDestructiveClose) | WGroupLeader ),
155
      grd( 10, 10 ), sGrid( TRUE ), snGrid( TRUE ), restoreConfig( TRUE ), splashScreen( TRUE ),
155
      grd( 10, 10 ), sGrid( TRUE ), snGrid( TRUE ), restoreConfig( TRUE ), splashScreen( TRUE ),
156
      fileFilter( tr( "TQt User-Interface Files (*.ui)" ) ), client( asClient ),
156
      fileFilter( tr( "TQt User-Interface Files (*.ui)" ) ), client( asClient ),
(-)b/tools/designer/designer/mainwindowactions.cpp (-2 / +2 lines)
Lines 1188-1194 Link Here
1188
    fileOpen( "", "" );
1188
    fileOpen( "", "" );
1189
}
1189
}
1190
1190
1191
void MainWindow::fileOpen( const TQString &filter, const TQString &extension, const TQString &fn, bool inProject  )
1191
Q_EXPORT void MainWindow::fileOpen( const TQString &filter, const TQString &extension, const TQString &fn, bool inProject  )
1192
{
1192
{
1193
    statusBar()->message( tr( "Open a file...") );
1193
    statusBar()->message( tr( "Open a file...") );
1194
1194
Lines 1291-1297 Link Here
1291
    }
1291
    }
1292
}
1292
}
1293
1293
1294
FormWindow *MainWindow::openFormWindow( const TQString &filename, bool validFileName, FormFile *ff )
1294
Q_EXPORT FormWindow *MainWindow::openFormWindow( const TQString &filename, bool validFileName, FormFile *ff )
1295
{
1295
{
1296
    if ( filename.isEmpty() )
1296
    if ( filename.isEmpty() )
1297
	return 0;
1297
	return 0;
(-)b/tools/designer/designer/designerapp.cpp (-3 / +3 lines)
Lines 58-64 Link Here
58
    splash->message( splashText, TQt::AlignRight|TQt::AlignTop );
58
    splash->message( splashText, TQt::AlignRight|TQt::AlignTop );
59
}
59
}
60
60
61
DesignerApplication::DesignerApplication( int &argc, char **argv )
61
Q_EXPORT DesignerApplication::DesignerApplication( int &argc, char **argv )
62
    : TQApplication( argc, argv )
62
    : TQApplication( argc, argv )
63
{
63
{
64
#if defined(Q_WS_WIN)
64
#if defined(Q_WS_WIN)
Lines 69-75 Link Here
69
#endif
69
#endif
70
}
70
}
71
71
72
TQSplashScreen *DesignerApplication::showSplash()
72
Q_EXPORT TQSplashScreen *DesignerApplication::showSplash()
73
{
73
{
74
    TQRect screen = TQApplication::desktop()->screenGeometry();
74
    TQRect screen = TQApplication::desktop()->screenGeometry();
75
    TQSettings config;
75
    TQSettings config;
Lines 101-107 Link Here
101
static TQString *settings_key = 0;
101
static TQString *settings_key = 0;
102
static TQString *old_settings_key = 0;
102
static TQString *old_settings_key = 0;
103
103
104
TQString DesignerApplication::settingsKey()
104
Q_EXPORT TQString DesignerApplication::settingsKey()
105
{
105
{
106
    if ( !settings_key )
106
    if ( !settings_key )
107
	settings_key = new TQString( "/TQt Designer/" +
107
	settings_key = new TQString( "/TQt Designer/" +
(-)b/tools/designer/designer/outputwindow.cpp (-1 / +1 lines)
Lines 45-51 Link Here
45
#include <ntqpainter.h>
45
#include <ntqpainter.h>
46
46
47
static TQTextEdit *debugoutput = 0;
47
static TQTextEdit *debugoutput = 0;
48
bool debugToStderr = FALSE;
48
Q_EXPORT bool debugToStderr = FALSE;
49
49
50
TQtMsgHandler OutputWindow::oldMsgHandler = 0;
50
TQtMsgHandler OutputWindow::oldMsgHandler = 0;
51
51
(-)b/tools/designer/uic/embed.cpp (-1 / +1 lines)
Lines 283-289 Link Here
283
	out << "static TQMimeSourceFactory* factory = 0;\n";
283
	out << "static TQMimeSourceFactory* factory = 0;\n";
284
	out << "\n";
284
	out << "\n";
285
285
286
	out << "void qInitImages_" << cProject << "()\n";
286
	out << "Q_EXPORT void qInitImages_" << cProject << "()\n";
287
	out << "{\n";
287
	out << "{\n";
288
	out << "    if ( !factory ) {\n";
288
	out << "    if ( !factory ) {\n";
289
	out << "\tfactory = new MimeSourceFactory_" << cProject << ";\n";
289
	out << "\tfactory = new MimeSourceFactory_" << cProject << ";\n";

Return to bug 1560