author | llornkcor <llornkcor> | 2002-11-15 14:24:58 (UTC) |
---|---|---|
committer | llornkcor <llornkcor> | 2002-11-15 14:24:58 (UTC) |
commit | 05f56fbbbe9ea5546f7503f4852fcab9c5b10a00 (patch) (side-by-side diff) | |
tree | bcc91dc6fd97e828f6dead6cb5811e84b2bb0154 | |
parent | b35750b8fe75e055e014e0dd294c714976f5715f (diff) | |
download | opie-05f56fbbbe9ea5546f7503f4852fcab9c5b10a00.zip opie-05f56fbbbe9ea5546f7503f4852fcab9c5b10a00.tar.gz opie-05f56fbbbe9ea5546f7503f4852fcab9c5b10a00.tar.bz2 |
dang it. small fix
-rw-r--r-- | noncore/apps/advancedfm/advancedfmMenu.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/noncore/apps/advancedfm/advancedfmMenu.cpp b/noncore/apps/advancedfm/advancedfmMenu.cpp index bef701a..f89ad30 100644 --- a/noncore/apps/advancedfm/advancedfmMenu.cpp +++ b/noncore/apps/advancedfm/advancedfmMenu.cpp @@ -534,5 +534,5 @@ void AdvancedFm::copyAs() { QStringList curFileList = getPath(); - QString curFile; + QString curFile, item; InputDialog *fileDlg; if (TabWidget->getCurrentTab() == 0) { @@ -540,4 +540,5 @@ void AdvancedFm::copyAs() { for ( QStringList::Iterator it = curFileList.begin(); it != curFileList.end(); ++it ) { QString destFile; + item=(*it); curFile = currentDir.canonicalPath()+"/"+(*it); fileDlg = new InputDialog( this,tr("Copy "+curFile+" As"), TRUE, 0); @@ -578,4 +579,5 @@ void AdvancedFm::copyAs() { for ( QStringList::Iterator it = curFileList.begin(); it != curFileList.end(); ++it ) { + item=(*it); curFile = currentRemoteDir.canonicalPath()+"/"+(*it); fileDlg = new InputDialog( this,tr("Copy "+curFile+" As"), TRUE, 0); |