diff options
Diffstat (limited to 'tools/designer/designer/designerapp.cpp')
-rw-r--r-- | tools/designer/designer/designerapp.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/designer/designer/designerapp.cpp b/tools/designer/designer/designerapp.cpp index d546d1d..f12d316 100644 --- a/tools/designer/designer/designerapp.cpp +++ b/tools/designer/designer/designerapp.cpp @@ -58,7 +58,7 @@ void set_splash_status( const QString &txt ) splash->message( splashText, Qt::AlignRight|Qt::AlignTop ); } -DesignerApplication::DesignerApplication( int &argc, char **argv ) +Q_EXPORT DesignerApplication::DesignerApplication( int &argc, char **argv ) : QApplication( argc, argv ) { #if defined(Q_WS_WIN) @@ -69,7 +69,7 @@ DesignerApplication::DesignerApplication( int &argc, char **argv ) #endif } -QSplashScreen *DesignerApplication::showSplash() +Q_EXPORT QSplashScreen *DesignerApplication::showSplash() { QRect screen = QApplication::desktop()->screenGeometry(); QSettings config; @@ -101,7 +101,7 @@ void DesignerApplication::closeSplash() static QString *settings_key = 0; static QString *old_settings_key = 0; -QString DesignerApplication::settingsKey() +Q_EXPORT QString DesignerApplication::settingsKey() { if ( !settings_key ) settings_key = new QString( "/Qt Designer/" + |