diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2011-07-02 11:58:53 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2011-07-02 11:58:53 +0000 |
| commit | 1763b5effcfba6dd51f805c5948c9108f7c97348 (patch) | |
| tree | f617f836ed835bb11f6a81675a2513956bc624e5 /src/app/builtincommandlineoption.h | |
| parent | 87208d0c0953b953136b22e3d4f342984f0c138a (diff) | |
| download | qmmp-1763b5effcfba6dd51f805c5948c9108f7c97348.tar.gz qmmp-1763b5effcfba6dd51f805c5948c9108f7c97348.tar.bz2 qmmp-1763b5effcfba6dd51f805c5948c9108f7c97348.zip | |
fixed command line option, removed unused code
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@2259 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/app/builtincommandlineoption.h')
| -rw-r--r-- | src/app/builtincommandlineoption.h | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/app/builtincommandlineoption.h b/src/app/builtincommandlineoption.h index 08d8e2df3..e771d9c63 100644 --- a/src/app/builtincommandlineoption.h +++ b/src/app/builtincommandlineoption.h @@ -24,6 +24,8 @@ #include <QHash> #include <QStringList> +class PlayListModel; + /** @author Vladimir Kuznetsov <vovanec@gmail.ru> */ @@ -42,11 +44,15 @@ public: bool identify(const QString& str)const; const QString helpString()const; void executeCommand(const QString& option, const QStringList &args, - const QString &cwd/*, MainWindow *mw*/); + const QString &cwd); QHash <QString, QStringList> splitArgs(const QStringList &args) const; +private slots: + void disconnectPl(); + private: QStringList m_options; + PlayListModel *m_model; }; #endif |
