aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/mediaplayer/libkvimediaplayer.cpp
diff options
context:
space:
mode:
authorGravatar Szymon Tomasz Stefanek2007-01-10 01:34:47 +0000
committerGravatar Szymon Tomasz Stefanek2007-01-10 01:34:47 +0000
commitc7caa2579263eb0ec07625627e9d090f1292a0b0 (patch)
treee6744b330ed28b0a319edd172a86c605de68a99d /src/modules/mediaplayer/libkvimediaplayer.cpp
parentctrl+w, alt+backspace shortcuts (diff)
downloadKVIrc-c7caa2579263eb0ec07625627e9d090f1292a0b0.tar.gz
KVIrc-c7caa2579263eb0ec07625627e9d090f1292a0b0.tar.bz2
KVIrc-c7caa2579263eb0ec07625627e9d090f1292a0b0.zip
More work on the themeing engine
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@150 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/mediaplayer/libkvimediaplayer.cpp')
-rw-r--r--src/modules/mediaplayer/libkvimediaplayer.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/modules/mediaplayer/libkvimediaplayer.cpp b/src/modules/mediaplayer/libkvimediaplayer.cpp
index 1176c7bd4..4eb227f3f 100644
--- a/src/modules/mediaplayer/libkvimediaplayer.cpp
+++ b/src/modules/mediaplayer/libkvimediaplayer.cpp
@@ -1396,7 +1396,7 @@ MP_KVS_FUNCTION(status)
the informations about the currently played media (in order to implement the nice /playing
scripts). The module has replaced the old mediaplayer module which after
years of development had developed some design flaws and needed a complete rewrite.
- At the moment of writing the supported players are: xmms (unix), winamp (windows),
+ At the moment of writing the supported players are: xmms (unix), audacious (unix), winamp (windows),
amarok (kde) and juk (kde). You choose the player interface by either setting
the option in the settings dialog, by manually setting [cmd]option[/cmd] stringPreferredMediaPlayer
or by running [cmd]mediaplayer.detect[/cmd] that will guess the media player interface for you.[br]
@@ -1516,6 +1516,7 @@ static bool mediaplayer_module_init( KviModule * m )
#ifndef COMPILE_ON_WINDOWS
g_pDescriptorList->append(MP_CREATE_DESCRIPTOR(KviXmmsInterface));
+ g_pDescriptorList->append(MP_CREATE_DESCRIPTOR(KviAudaciousInterface));
#endif
#ifdef COMPILE_ON_WINDOWS