aboutsummaryrefslogtreecommitdiff
path: root/lumina-fm/FODialog.h
diff options
context:
space:
mode:
authorKen Moore <moorekou@gmail.com>2015-09-09 11:03:49 -0400
committerKen Moore <moorekou@gmail.com>2015-09-09 11:03:49 -0400
commit8dab2cd7560926437cfdd50b42acf18e193b21ec (patch)
tree8ded852234f02966058905d59de80e98bb22d2ee /lumina-fm/FODialog.h
parentMake sure that when the last browser is closed a new one is created pointing ... (diff)
downloadlumina-8dab2cd7560926437cfdd50b42acf18e193b21ec.tar.gz
lumina-8dab2cd7560926437cfdd50b42acf18e193b21ec.tar.bz2
lumina-8dab2cd7560926437cfdd50b42acf18e193b21ec.zip
Make sure that drag events only happen with left/right mouse clicks, and clean up the "cancelling" of a file operation.
Diffstat (limited to 'lumina-fm/FODialog.h')
-rw-r--r--lumina-fm/FODialog.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/lumina-fm/FODialog.h b/lumina-fm/FODialog.h
index d80d4a39..ef3ff57d 100644
--- a/lumina-fm/FODialog.h
+++ b/lumina-fm/FODialog.h
@@ -66,10 +66,10 @@ public:
bool noerrors;
void setOverwrite(bool);
- void RemoveFiles(QStringList paths);
- void CopyFiles(QStringList oldPaths, QStringList newPaths); //same permissions as old files
- void RestoreFiles(QStringList oldPaths, QStringList newPaths); //user/group rw permissions
- void MoveFiles(QStringList oldPaths, QStringList newPaths); //no change in permissions
+ bool RemoveFiles(QStringList paths);
+ bool CopyFiles(QStringList oldPaths, QStringList newPaths); //same permissions as old files
+ bool RestoreFiles(QStringList oldPaths, QStringList newPaths); //user/group rw permissions
+ bool MoveFiles(QStringList oldPaths, QStringList newPaths); //no change in permissions
private:
Ui::FODialog *ui;
bgstack15