summaryrefslogtreecommitdiff
path: root/noncore
authorllornkcor <llornkcor>2002-03-19 13:39:29 (UTC)
committer llornkcor <llornkcor>2002-03-19 13:39:29 (UTC)
commitc2de5322e02760d296fda65e78a1f3392448dc94 (patch) (side-by-side diff)
treef187315151835da84da07832065a45b606bcf3e0 /noncore
parentf6b540e14072d9cfcd5f4a787dcd9039fae7011b (diff)
downloadopie-c2de5322e02760d296fda65e78a1f3392448dc94.zip
opie-c2de5322e02760d296fda65e78a1f3392448dc94.tar.gz
opie-c2de5322e02760d296fda65e78a1f3392448dc94.tar.bz2
fixed menu
Diffstat (limited to 'noncore') (more/less context) (show whitespace changes)
-rw-r--r--noncore/net/opieftp/opieftp.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/noncore/net/opieftp/opieftp.cpp b/noncore/net/opieftp/opieftp.cpp
index f70011b..f1b159c 100644
--- a/noncore/net/opieftp/opieftp.cpp
+++ b/noncore/net/opieftp/opieftp.cpp
@@ -697,3 +697,3 @@ void OpieFtp::showRemoteMenu(QListViewItem * item)
QPopupMenu m;// = new QPopupMenu( Local_View );
- if( /*item->text(0).right(1) == "/" ||*/ item->text(0).find("/",0,TRUE))
+ if( /*item->text(0).right(1) == "/" ||*/ item->text(0).find("/",0,TRUE) != -1)
m.insertItem( tr( "Change Directory" ), this, SLOT( doRemoteCd() ));
@@ -713,3 +713,3 @@ void OpieFtp::showLocalMenu(QListViewItem * item)
m.insertSeparator();
- if( /*item->text(0).right(1) == "/" ||*/ item->text(0).find("/",0,TRUE))
+ if( /*item->text(0).right(1) == "/" ||*/ item->text(0).find("/",0,TRUE) !=-1)
m.insertItem( tr( "Change Directory" ), this, SLOT( doLocalCd() ));