Skip to content

Commit 3cd1792

Browse files
author
telwertowski
committedSep 10, 2008
Add code that should be placed in setupUi by uic but isn't for Qt4.3
git-svn-id: http://svn.osgeo.org/qgis/trunk/qgis@9294 c8812cc2-4d05-0410-92ff-de0c093fc19c

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed
 

‎src/plugins/grass/qgsgrassnewmapset.cpp

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,15 @@ QgsGrassNewMapset::QgsGrassNewMapset( QgisInterface *iface,
7070
QgsDebugMsg( "QgsGrassNewMapset()" );
7171

7272
setupUi( this );
73+
#if QT_VERSION < 0x040400
74+
// this is not done by Qt4.3 uic
75+
addPage( WizardPage1 );
76+
addPage( WizardPage2 );
77+
addPage( WizardPage3 );
78+
addPage( WizardPage4 );
79+
addPage( WizardPage5 );
80+
addPage( WizardPage6 );
81+
#endif
7382
#ifdef Q_WS_MAC
7483
setWizardStyle( QWizard::ClassicStyle );
7584
#endif

0 commit comments

Comments
 (0)
Please sign in to comment.