aboutsummaryrefslogtreecommitdiff
path: root/src/plugins/Input/mpc/mpcmetadatamodel.cpp
Commit message (Collapse)AuthorAgeFilesLines
* musepack plugin: extra tags supporttrialuser022015-05-011-2/+20
| | | | git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@4887 90c681e8-e032-0410-971d-27865f9a5e38
* fixed FSF headerstrialuser022012-07-311-1/+1
| | | | git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@2845 90c681e8-e032-0410-971d-27865f9a5e38
* fixed FSF address (trunk)trialuser022012-07-311-1/+1
| | | | git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@2844 90c681e8-e032-0410-971d-27865f9a5e38
* removed obsolete memberstrialuser022010-03-111-2/+2
| | | | git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@1619 90c681e8-e032-0410-971d-27865f9a5e38
* enabled mpc plugin, fixed some bugstrialuser022009-09-221-0/+193
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@1250 90c681e8-e032-0410-971d-27865f9a5e38
an class="hl com"> * the Free Software Foundation; either version 2 of the License, or * * (at your option) any later version. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ #ifndef SETTINGSDIALOG_H #define SETTINGSDIALOG_H #include <QDialog> #include "ui_settingsdialog.h" /** @author Ilya Kotov <forkotov02@hotmail.ru> */ class SettingsDialog : public QDialog { Q_OBJECT public: SettingsDialog(QWidget *parent = 0); ~SettingsDialog(); public slots: virtual void accept(); private: Ui::SettingsDialog ui; }; #endif