diff options
| author | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2008-03-18 11:47:14 +0000 |
|---|---|---|
| committer | trialuser02 <trialuser02@90c681e8-e032-0410-971d-27865f9a5e38> | 2008-03-18 11:47:14 +0000 |
| commit | 6925380098f9de4841534db7e8285ba0c18c2ca2 (patch) | |
| tree | a29374713c232d31b49afead88707f924e8c9f76 /src/qmmpui/control.cpp | |
| parent | 625b2712c1c9fa46ba43684a24a477aa60d88089 (diff) | |
| download | qmmp-6925380098f9de4841534db7e8285ba0c18c2ca2.tar.gz qmmp-6925380098f9de4841534db7e8285ba0c18c2ca2.tar.bz2 qmmp-6925380098f9de4841534db7e8285ba0c18c2ca2.zip | |
make seek and time accessible by general plugins
git-svn-id: http://svn.code.sf.net/p/qmmp-dev/code/trunk/qmmp@278 90c681e8-e032-0410-971d-27865f9a5e38
Diffstat (limited to 'src/qmmpui/control.cpp')
| -rw-r--r-- | src/qmmpui/control.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/qmmpui/control.cpp b/src/qmmpui/control.cpp index 4b734f824..161d23a6c 100644 --- a/src/qmmpui/control.cpp +++ b/src/qmmpui/control.cpp @@ -54,6 +54,11 @@ void Control::previous() emit commandCalled(Previous); } +void Control::seek(int pos) +{ + emit seekCalled(pos); +} + void Control::exit() { emit commandCalled(Exit); |
