aboutsummaryrefslogtreecommitdiff
path: root/lumina-fm/FODialog.h
diff options
context:
space:
mode:
Diffstat (limited to 'lumina-fm/FODialog.h')
-rw-r--r--lumina-fm/FODialog.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/lumina-fm/FODialog.h b/lumina-fm/FODialog.h
index e823fe2e..e455c995 100644
--- a/lumina-fm/FODialog.h
+++ b/lumina-fm/FODialog.h
@@ -47,9 +47,9 @@ private:
int overwrite; // [-1= auto, 0= no overwrite, 1= overwrite]
QStringList ofiles, nfiles; //original/new files
- QStringList subfiles(QString dirpath); //recursive function for fetching all "child" files/dirs (dirs last)
+ QStringList subfiles(QString dirpath, bool dirsfirst = false); //recursive function for fetching all "child" files/dirs (dirs last by default)
QString newFileName(QString path);
- QStringList removeItem(QString path);
+ QStringList removeItem(QString path, bool recursive = false);
QStringList copyItem(QString oldpath, QString newpath);
private slots:
bgstack15