diff options
author | Arno <arno@disconnect.de> | 2018-10-13 04:56:32 +0200 |
---|---|---|
committer | Arno <arno@disconnect.de> | 2018-10-13 04:56:32 +0200 |
commit | 6f87db1897e4be7bccd2684da571ed251c5b695e (patch) | |
tree | d1dbbeb6757456e5e9aaa36ab53a38662ed7f3b1 /copydialog.h | |
parent | 2a866788cd2608b5f893f173a611785da44d3047 (diff) | |
download | BeetPlayer-6f87db1897e4be7bccd2684da571ed251c5b695e.tar.gz BeetPlayer-6f87db1897e4be7bccd2684da571ed251c5b695e.tar.bz2 BeetPlayer-6f87db1897e4be7bccd2684da571ed251c5b695e.zip |
Implement add sources to CopyDialog
Diffstat (limited to 'copydialog.h')
-rw-r--r-- | copydialog.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/copydialog.h b/copydialog.h index 5a63515..8a32372 100644 --- a/copydialog.h +++ b/copydialog.h @@ -15,6 +15,7 @@ class CopyDialog : public QDialog { void getDestination(); void setSource(const QString &src); void setDestFolder(const QString &dst); + void setSources(const QStringList &sources); protected: virtual void closeEvent(QCloseEvent *e); @@ -24,6 +25,7 @@ class CopyDialog : public QDialog { QLineEdit *mDstE; QLineEdit *mFolderE; QLabel *mResultL; + QStringList mSources; }; #endif // COPYDIALOG_H |