Skip to content

Commit

Permalink
Merge branch 'master' of github.com:qgis/Quantum-GIS
Browse files Browse the repository at this point in the history
  • Loading branch information
timlinux committed Sep 26, 2012
2 parents 671cc98 + dad7f98 commit d18c9c6
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions src/app/qgisapp.cpp
Expand Up @@ -1246,13 +1246,16 @@ void QgisApp::createMenus()

// Database Menu
// don't add it yet, wait for a plugin
mDatabaseMenu = new QMenu( tr( "&Database" ), this );
mDatabaseMenu = new QMenu( tr( "&Database" ), menuBar() );
mDatabaseMenu->setObjectName( "mDatabaseMenu" );
// Vector Menu
// don't add it yet, wait for a plugin
mVectorMenu = new QMenu( tr( "Vect&or" ), this );
mVectorMenu = new QMenu( tr( "Vect&or" ), menuBar() );
mVectorMenu->setObjectName( "mVectorMenu" );
// Web Menu
// don't add it yet, wait for a plugin
mWebMenu = new QMenu( tr( "&Web" ), this );
mWebMenu = new QMenu( tr( "&Web" ), menuBar() );
mWebMenu->setObjectName( "mWebMenu" );

// Help menu
// add What's this button to it
Expand Down

0 comments on commit d18c9c6

Please sign in to comment.