diff -r 40c4806dfef2 -r 94cd6a451593 mainwindow.cpp --- a/mainwindow.cpp Mon May 15 07:32:10 2006 +0000 +++ b/mainwindow.cpp Wed May 31 12:27:38 2006 +0000 @@ -357,9 +357,12 @@ connect( a, SIGNAL( activated() ), this, SLOT( fileImportKDEBookmarks() ) ); a->addTo (importMenu); - a = new QAction( tr( "Import")+" "+tr("Firefox Bookmarks" ), QPixmap(), tr("Firefox Bookmarks"), 0, this, "importFirefoxBookmarks" ); - connect( a, SIGNAL( activated() ), this, SLOT( fileImportFirefoxBookmarks() ) ); - a->addTo (importMenu); + if (settings.readBoolEntry( "/vym/mainwindow/showTestMenu",false)) + { + a = new QAction( tr( "Import")+" "+tr("Firefox Bookmarks" ), QPixmap(), tr("Firefox Bookmarks"), 0, this, "importFirefoxBookmarks" ); + connect( a, SIGNAL( activated() ), this, SLOT( fileImportFirefoxBookmarks() ) ); + a->addTo (importMenu); + } a = new QAction( tr( "Import")+" Mind Manager" , QPixmap(), "Mind Manager...", 0, this, "importMM" ); connect( a, SIGNAL( activated() ), this, SLOT( fileImportMM() ) );