diff options
author | Arno <arno@disconnect.de> | 2018-10-13 05:10:14 +0200 |
---|---|---|
committer | Arno <arno@disconnect.de> | 2018-10-13 05:10:14 +0200 |
commit | b65ab2398dcbc2f5c9b1ec33ac0bbf863e3df0ca (patch) | |
tree | db0efa4a3882d8e633259ef3bbbb5b63515dce72 /copydialog.h | |
parent | 6f87db1897e4be7bccd2684da571ed251c5b695e (diff) | |
download | BeetPlayer-b65ab2398dcbc2f5c9b1ec33ac0bbf863e3df0ca.tar.gz BeetPlayer-b65ab2398dcbc2f5c9b1ec33ac0bbf863e3df0ca.tar.bz2 BeetPlayer-b65ab2398dcbc2f5c9b1ec33ac0bbf863e3df0ca.zip |
Print destination file when adding sources
Use a function to generate the path, so we can reuse it when actually
copying files :)
Diffstat (limited to 'copydialog.h')
-rw-r--r-- | copydialog.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/copydialog.h b/copydialog.h index 8a32372..0eed637 100644 --- a/copydialog.h +++ b/copydialog.h @@ -16,8 +16,11 @@ class CopyDialog : public QDialog { void setSource(const QString &src); void setDestFolder(const QString &dst); void setSources(const QStringList &sources); + void refresh(); + protected: + QString getDestinationFile(const QString &srcFn); virtual void closeEvent(QCloseEvent *e); private: |