-rw-r--r-- | noncore/apps/advancedfm/advancedfmData.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/noncore/apps/advancedfm/advancedfmData.cpp b/noncore/apps/advancedfm/advancedfmData.cpp index 90425dc..1a7a6d7 100644 --- a/noncore/apps/advancedfm/advancedfmData.cpp +++ b/noncore/apps/advancedfm/advancedfmData.cpp @@ -99,18 +99,18 @@ void AdvancedFm::init() { fileMenu->insertItem( tr( "Make Symlink" ), this, SLOT( mkSym() )); fileMenu->insertItem( tr( "Select All" ), this, SLOT( selectAll() )); fileMenu->insertItem( tr( "Add To Documents" ), this, SLOT( addToDocs() )); fileMenu->insertItem( tr( "Delete" ), this, SLOT( del() )); fileMenu->setCheckable(TRUE); viewMenu->insertItem( tr( "Switch to Local" ), this, SLOT( switchToLocalTab() )); viewMenu->insertItem( tr( "Switch to Remote" ), this, SLOT( switchToRemoteTab() )); - viewMenu->insertSeparator(); - viewMenu->insertItem( tr( "About" ), this, SLOT( doAbout() )); +// viewMenu->insertSeparator(); +// viewMenu->insertItem( tr( "About" ), this, SLOT( doAbout() )); viewMenu->setCheckable(TRUE); s_addBookmark = tr("Bookmark Directory"); s_removeBookmark = tr("Remove Current Directory from Bookmarks"); menuButton->setUseLabel(false); menuButton->insertItem( s_addBookmark); menuButton->insertItem( s_removeBookmark); @@ -229,29 +229,29 @@ void AdvancedFm::init() { TabWidget->setCurrentTab(0); } void AdvancedFm::initConnections() { connect( qApp,SIGNAL( aboutToQuit()), - this, SLOT( cleanUp()) ); + this, SLOT( cleanUp()) ); connect( qpeDirButton ,SIGNAL(released()), - this,SLOT( QPEButtonPushed()) ); + this,SLOT( QPEButtonPushed()) ); connect( cfButton ,SIGNAL(released()), - this,SLOT( CFButtonPushed()) ); + this,SLOT( CFButtonPushed()) ); connect( sdButton ,SIGNAL(released()), - this,SLOT( SDButtonPushed()) ); + this,SLOT( SDButtonPushed()) ); connect( cdUpButton ,SIGNAL(released()), - this,SLOT( upDir()) ); + this,SLOT( upDir()) ); connect( docButton,SIGNAL(released()), - this,SLOT( docButtonPushed()) ); + this,SLOT( docButtonPushed()) ); connect( homeButton,SIGNAL(released()), - this,SLOT( homeButtonPushed()) ); + this,SLOT( homeButtonPushed()) ); connect( currentPathCombo, SIGNAL( activated( const QString & ) ), this, SLOT( currentPathComboActivated( const QString & ) ) ); connect( currentPathCombo->lineEdit(),SIGNAL(returnPressed()), this,SLOT(currentPathComboChanged())); connect( Local_View, SIGNAL( clicked( QListViewItem*)), this,SLOT( ListClicked(QListViewItem *)) ); |