diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2008-02-28 13:01:34 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2008-02-28 13:01:34 +0000 |
| commit | 0102019be5e123a5f069e02bf9566b811a681b81 (patch) | |
| tree | ecd7c14226c7ecf35e859a6b5ad8f6ca17435390 /src/ui/addurldialog.h | |
| parent | 875efcc8a05794964e1a995a4d624167e4a63f0a (diff) | |
| download | qmmp-0102019be5e123a5f069e02bf9566b811a681b81.tar.gz qmmp-0102019be5e123a5f069e02bf9566b811a681b81.tar.bz2 qmmp-0102019be5e123a5f069e02bf9566b811a681b81.zip | |
history support for url dialog
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@256 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/ui/addurldialog.h')
| -rw-r--r-- | src/ui/addurldialog.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/src/ui/addurldialog.h b/src/ui/addurldialog.h index 86a065703..e3bcdf22e 100644 --- a/src/ui/addurldialog.h +++ b/src/ui/addurldialog.h @@ -1,5 +1,5 @@ /*************************************************************************** - * Copyright (C) 2006 by Ilya Kotov * + * Copyright (C) 2006-2008 by Ilya Kotov * * forkotov02@hotmail.ru * * * * This program is free software; you can redistribute it and/or modify * @@ -17,7 +17,7 @@ * Free Software Foundation, Inc., * * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ - + #ifndef ADDURLDIALOG_H #define ADDURLDIALOG_H @@ -34,18 +34,19 @@ class PlayListModel; class AddUrlDialog : public QDialog , private Ui::AddUrlDialog { - Q_OBJECT + Q_OBJECT public: static void popup(QWidget* parent ,PlayListModel*); protected: - AddUrlDialog( QWidget * parent = 0, Qt::WindowFlags f = 0 ); - ~AddUrlDialog(); + AddUrlDialog( QWidget * parent = 0, Qt::WindowFlags f = 0 ); + ~AddUrlDialog(); protected slots: - virtual void accept(); + virtual void accept(); private: void setModel(PlayListModel*); static QPointer<AddUrlDialog> instance; PlayListModel* m_model; + QStringList m_history; }; #endif //ADDURLDIALOG_H |
