aboutsummaryrefslogtreecommitdiff
path: root/src/qmmpui/commandlinemanager.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/qmmpui/commandlinemanager.h')
-rw-r--r--src/qmmpui/commandlinemanager.h12
1 files changed, 1 insertions, 11 deletions
diff --git a/src/qmmpui/commandlinemanager.h b/src/qmmpui/commandlinemanager.h
index 4e99ba35d..a6039c7c3 100644
--- a/src/qmmpui/commandlinemanager.h
+++ b/src/qmmpui/commandlinemanager.h
@@ -36,20 +36,11 @@ public:
~CommandLineManager();
//general
- void setState(const uint &state);
- void setSongInfo(const SongInfo &song);
- void setVolume(int left, int right);
- void setTime(int time);
//properties
- uint state();
- SongInfo *info();
- int elapsed();
- int leftVolume();
- int rightVolume();
//command line
- void executeCommand(const QString& opt_str, Control* ctrl);
+ void executeCommand(const QString& opt_str);
//static methods
static bool hasOption(const QString &opt_str);
@@ -57,7 +48,6 @@ public:
private:
uint m_state;
- SongInfo m_song;
int m_left, m_right;
int m_time;
};