Skip to content

Commit

Permalink
fixed missing vector,database and web menu in customization
Browse files Browse the repository at this point in the history
  • Loading branch information
blazek committed Sep 26, 2012
1 parent bd07833 commit dad7f98
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 dad7f98

Please sign in to comment.