Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
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
  • Loading branch information
telwertowski committed Sep 10, 2008
1 parent 62d16ae commit 3cd1792
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions src/plugins/grass/qgsgrassnewmapset.cpp
Expand Up @@ -70,6 +70,15 @@ QgsGrassNewMapset::QgsGrassNewMapset( QgisInterface *iface,
QgsDebugMsg( "QgsGrassNewMapset()" );

setupUi( this );
#if QT_VERSION < 0x040400
// this is not done by Qt4.3 uic
addPage( WizardPage1 );
addPage( WizardPage2 );
addPage( WizardPage3 );
addPage( WizardPage4 );
addPage( WizardPage5 );
addPage( WizardPage6 );
#endif
#ifdef Q_WS_MAC
setWizardStyle( QWizard::ClassicStyle );
#endif
Expand Down

0 comments on commit 3cd1792

Please sign in to comment.