diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2009-08-07 17:57:44 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2009-08-07 17:57:44 +0000 |
| commit | ffed2da98a14465350bd5e82046722fa1aa7a199 (patch) | |
| tree | 86400075b7eeb8917bcab67481c040bf4ce7d554 /src/plugins/Input/flac/detailsdialog.h | |
| parent | 00178e429588dc76b467377eed3d20f48a389476 (diff) | |
| download | qmmp-ffed2da98a14465350bd5e82046722fa1aa7a199.tar.gz qmmp-ffed2da98a14465350bd5e82046722fa1aa7a199.tar.bz2 qmmp-ffed2da98a14465350bd5e82046722fa1aa7a199.zip | |
added unified dialog api
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@1110 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/plugins/Input/flac/detailsdialog.h')
| -rw-r--r-- | src/plugins/Input/flac/detailsdialog.h | 19 |
1 files changed, 7 insertions, 12 deletions
diff --git a/src/plugins/Input/flac/detailsdialog.h b/src/plugins/Input/flac/detailsdialog.h index 80c17544c..97069306a 100644 --- a/src/plugins/Input/flac/detailsdialog.h +++ b/src/plugins/Input/flac/detailsdialog.h @@ -1,6 +1,6 @@ /*************************************************************************** - * Copyright (C) 2006 by Ilya Kotov * - * forkotov02@hotmail.ru * + * Copyright (C) 2006-2009 by Ilya Kotov * + * forkotov02@hotmail.ru * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * @@ -20,14 +20,12 @@ #ifndef DETAILSDIALOG_H #define DETAILSDIALOG_H -#include <QDialog> - -#include "ui_detailsdialog.h" +#include <qmmp/abstractdetailsdialog.h> /** @author Ilya Kotov <forkotov02@hotmail.ru> */ -class DetailsDialog : public QDialog +class DetailsDialog : public AbstractDetailsDialog { Q_OBJECT public: @@ -35,13 +33,10 @@ public: ~DetailsDialog(); -private slots: - void saveTag(); - -private: +private: void loadFLACInfo(); - void loadTag(); - Ui::DetailsDialog ui; + void loadTags(); + void writeTags(); QString m_path; }; |
