1.1 --- a/mainwindow.cpp Mon May 15 07:34:54 2006 +0000
1.2 +++ b/mainwindow.cpp Fri May 19 08:16:30 2006 +0000
1.3 @@ -357,9 +357,12 @@
1.4 connect( a, SIGNAL( activated() ), this, SLOT( fileImportKDEBookmarks() ) );
1.5 a->addTo (importMenu);
1.6
1.7 - a = new QAction( tr( "Import")+" "+tr("Firefox Bookmarks" ), QPixmap(), tr("Firefox Bookmarks"), 0, this, "importFirefoxBookmarks" );
1.8 - connect( a, SIGNAL( activated() ), this, SLOT( fileImportFirefoxBookmarks() ) );
1.9 - a->addTo (importMenu);
1.10 + if (settings.readBoolEntry( "/vym/mainwindow/showTestMenu",false))
1.11 + {
1.12 + a = new QAction( tr( "Import")+" "+tr("Firefox Bookmarks" ), QPixmap(), tr("Firefox Bookmarks"), 0, this, "importFirefoxBookmarks" );
1.13 + connect( a, SIGNAL( activated() ), this, SLOT( fileImportFirefoxBookmarks() ) );
1.14 + a->addTo (importMenu);
1.15 + }
1.16
1.17 a = new QAction( tr( "Import")+" Mind Manager" , QPixmap(), "Mind Manager...", 0, this, "importMM" );
1.18 connect( a, SIGNAL( activated() ), this, SLOT( fileImportMM() ) );