# HG changeset patch # User insilmaril # Date 1148026590 0 # Node ID 3481adf338492444e2f815fae55255d0c443886a # Parent d39c67b49cbd1eb788410aa35605350837a53688 disabled the not (yet) working firefox import diff -r d39c67b49cbd -r 3481adf33849 mainwindow.cpp --- a/mainwindow.cpp Mon May 15 07:34:54 2006 +0000 +++ b/mainwindow.cpp Fri May 19 08:16:30 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() ) );