summaryrefslogtreecommitdiff
authorkergoth <kergoth>2002-05-15 16:44:53 (UTC)
committer kergoth <kergoth>2002-05-15 16:44:53 (UTC)
commitaa5d79399aa991aa84eb8b4f48d55202473990ef (patch) (side-by-side diff)
treedda2b43b5ad001435175cce1ec943df21ef63c43
parent7844e2aebcb289f55bf10f22ea1250773c8ad7bd (diff)
downloadopie-aa5d79399aa991aa84eb8b4f48d55202473990ef.zip
opie-aa5d79399aa991aa84eb8b4f48d55202473990ef.tar.gz
opie-aa5d79399aa991aa84eb8b4f48d55202473990ef.tar.bz2
hmm, we dont need the same things in here twice. Compiles again.
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/unsupported/filebrowser/filebrowser.cpp38
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
@@ -541,25 +541,6 @@ void FileView::cut()
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();
}
@@ -1108,22 +1089,3 @@ void FileBrowser::cleanUp() {
// 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());
-}