aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/snd/libkvisnd.cpp
diff options
context:
space:
mode:
authorGravatar Szymon Tomasz Stefanek2007-01-19 02:11:09 +0000
committerGravatar Szymon Tomasz Stefanek2007-01-19 02:11:09 +0000
commitecd49ed1192c79a3b55cdc4130bec1d4182f71b4 (patch)
tree2ffd5b617136b4296e25eb3c66a5cd27180f21c8 /src/modules/snd/libkvisnd.cpp
parent*AUTOMATICALLY* updated KVI_SOURCES_DATE variable (diff)
downloadKVIrc-ecd49ed1192c79a3b55cdc4130bec1d4182f71b4.tar.gz
KVIrc-ecd49ed1192c79a3b55cdc4130bec1d4182f71b4.tar.bz2
KVIrc-ecd49ed1192c79a3b55cdc4130bec1d4182f71b4.zip
More Qt 4.x port
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@195 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/snd/libkvisnd.cpp')
-rw-r--r--src/modules/snd/libkvisnd.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/snd/libkvisnd.cpp b/src/modules/snd/libkvisnd.cpp
index caa39ebc6..9f95e442b 100644
--- a/src/modules/snd/libkvisnd.cpp
+++ b/src/modules/snd/libkvisnd.cpp
@@ -83,7 +83,7 @@ KviSoundPlayer::KviSoundPlayer()
m_pThreadList = new KviPtrList<KviSoundThread>;
m_pThreadList->setAutoDelete(true);
- m_pSoundSystemDict = new QDict<SoundSystemRoutine>(17,false);
+ m_pSoundSystemDict = new KviDict<SoundSystemRoutine>(17,false);
m_pSoundSystemDict->setAutoDelete(true);
#ifdef COMPILE_ON_WINDOWS
@@ -134,7 +134,7 @@ KviSoundPlayer::~KviSoundPlayer()
void KviSoundPlayer::getAvailableSoundSystems(QStringList *l)
{
- QDictIterator<SoundSystemRoutine> it(*m_pSoundSystemDict);
+ KviDictIterator<SoundSystemRoutine> it(*m_pSoundSystemDict);
while(it.current())
{
l->append(it.currentKey());