aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/mediaplayer/mp_xmmsinterface.cpp
diff options
context:
space:
mode:
authorGravatar Szymon Tomasz Stefanek2010-06-13 15:21:29 +0000
committerGravatar Szymon Tomasz Stefanek2010-06-13 15:21:29 +0000
commitcfcfaded711c1a51ddc160b02c377b3fc65456cb (patch)
treec51cf57dca6665b8966c281f4a7be58250d73a6b /src/modules/mediaplayer/mp_xmmsinterface.cpp
parentFix for a crash in the objects module (diff)
downloadKVIrc-cfcfaded711c1a51ddc160b02c377b3fc65456cb.tar.gz
KVIrc-cfcfaded711c1a51ddc160b02c377b3fc65456cb.tar.bz2
KVIrc-cfcfaded711c1a51ddc160b02c377b3fc65456cb.zip
Make the KVS parameter specification a bit more typesafe. Fix some mismatched types detected with the new method.
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@4457 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/mediaplayer/mp_xmmsinterface.cpp')
-rw-r--r--src/modules/mediaplayer/mp_xmmsinterface.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/mediaplayer/mp_xmmsinterface.cpp b/src/modules/mediaplayer/mp_xmmsinterface.cpp
index 37d13f1b2..ce0bdea4d 100644
--- a/src/modules/mediaplayer/mp_xmmsinterface.cpp
+++ b/src/modules/mediaplayer/mp_xmmsinterface.cpp
@@ -191,7 +191,7 @@ bool KviXmmsInterface::quit()
XMMS_SIMPLE_CALL("xmms_remote_quit")
}
-bool KviXmmsInterface::jumpTo(int &iPos)
+bool KviXmmsInterface::jumpTo(kvs_int_t &iPos)
{
void (*sym)(int,int) = (void (*)(int,int))lookupSymbol("xmms_remote_jump_to_time");
if(!sym)return false;