-rw-r--r-- | noncore/unsupported/filebrowser/filebrowser.cpp | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/noncore/unsupported/filebrowser/filebrowser.cpp b/noncore/unsupported/filebrowser/filebrowser.cpp index 7dabdb6..d16e771 100644 --- a/noncore/unsupported/filebrowser/filebrowser.cpp +++ b/noncore/unsupported/filebrowser/filebrowser.cpp @@ -540,27 +540,8 @@ void FileView::cut() if((item = (FileItem *) firstChild()) == 0) return; flist.clear(); while( item ){ - if( ite - // ##### a better inmplementation might be to rename the CUT file - // ##### to ".QPE-FILEBROWSER-MOVING" rather than copying it. - QString cmd, dest, basename, cd = "/tmp/qpemoving"; - QStringList newflist; - newflist.clear(); - - cmd = "rm -rf " + cd; - system ( (const char *) cmd ); - cmd = "mkdir " + cd; - system( (const char *) cmd ); - -// get the names of the files to cut - FileItem * item; - - if((item = (FileItem *) firstChild()) == 0) return; - - flist.clear(); - while( item ){ if( item->isSelected() /*&& !item->isDir()*/ ){ flist += item->getFilePath(); } item = (FileItem *) item->nextSibling(); @@ -1107,23 +1088,4 @@ void FileBrowser::cleanUp() { QString cmdr = "rm -rf /tmp/filebrowserThumbnailCache"; // qDebug("exit"); system(cmdr.latin1()); } - -{ - bool valShowThumbnails=viewMenu->isItemChecked( viewMenu->idAt( 2 ) ); - valShowThumbnails=!valShowThumbnails; - viewMenu->setItemChecked( viewMenu->idAt( 2 ), valShowThumbnails ); - fileView->setShowThumbnails(valShowThumbnails); - - Config cfg("Filebrowser"); - cfg.setGroup("View"); - cfg.writeEntry("Thumbnails",valShowThumbnails?"TRUE":"FALSE"); - - fileView->updateDir(); -} - -void FileBrowser::cleanUp() { - QString cmdr = "rm -rf /tmp/filebrowserThumbnailCache"; -// qDebug("exit"); - system(cmdr.latin1()); -} |