diff options
Diffstat (limited to 'covereditor.h')
-rw-r--r-- | covereditor.h | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/covereditor.h b/covereditor.h index 1c0fb93..c702ef8 100644 --- a/covereditor.h +++ b/covereditor.h @@ -12,14 +12,11 @@ class QComboBox; class QStringList; -class QPushButton; class CoverEditor : public QWidget { Q_OBJECT - Q_ENUMS(Mode); public: - enum Mode { Archive, Update }; - CoverEditor(Mode mode = Archive, QWidget *parent = 0, Qt::WindowFlags f = 0); + CoverEditor(QWidget *parent = 0, Qt::WindowFlags f = 0); ~CoverEditor() {}; void setCovers(const QStringList &covers); const QString frontCover() const; @@ -27,17 +24,12 @@ class CoverEditor : public QWidget { const QString covers() const; const QString movie() const; - private slots: - void addFile(); - private: const QString findPath(const QString &name) const; QComboBox *mFrontCover; QComboBox *mBackCover; QComboBox *mCovers; QComboBox *mMovie; - QPushButton *mAddFile; - Mode mMode; QStringList mCoverPaths; }; |