-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 @@ -95,26 +95,26 @@ void AdvancedFm::init() { fileMenu->insertItem( tr( "Rename" ), this, SLOT( rn() )); fileMenu->insertItem( tr( "Run Command" ), this, SLOT( runCommandStd() )); fileMenu->insertItem( tr( "Run Command with Output" ), this, SLOT( runCommand() )); fileMenu->insertSeparator(); 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); menuButton->insertSeparator(); // menuButton->insertItem(""); // customDirMenu->insertItem(tr("Add This Directory")); @@ -225,37 +225,37 @@ void AdvancedFm::init() { b = TRUE; filterStr="*"; b=FALSE; 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 *)) ); connect( Local_View, SIGNAL( mouseButtonPressed( int, QListViewItem *, const QPoint&, int)), this,SLOT( ListPressed(int, QListViewItem *, const QPoint&, int)) ); connect( Local_View, SIGNAL( selectionChanged() ), SLOT( cancelMenuTimer() ) ); |