aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/options/optw_sound.cpp
diff options
context:
space:
mode:
authorGravatar Fabio Bas2010-07-31 10:23:58 +0000
committerGravatar Fabio Bas2010-07-31 10:23:58 +0000
commit5c43b0eb8470bccb40f438aacb0792e7917fc2f6 (patch)
treea22cc140ca3a479227d51c568ff1b0d72f6e9706 /src/modules/options/optw_sound.cpp
parentfix for #867 (diff)
downloadKVIrc-5c43b0eb8470bccb40f438aacb0792e7917fc2f6.tar.gz
KVIrc-5c43b0eb8470bccb40f438aacb0792e7917fc2f6.tar.bz2
KVIrc-5c43b0eb8470bccb40f438aacb0792e7917fc2f6.zip
forgot to remove debug strings in previous commit
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@4718 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/options/optw_sound.cpp')
-rw-r--r--src/modules/options/optw_sound.cpp7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/modules/options/optw_sound.cpp b/src/modules/options/optw_sound.cpp
index e23ad4b51..25a646b33 100644
--- a/src/modules/options/optw_sound.cpp
+++ b/src/modules/options/optw_sound.cpp
@@ -149,10 +149,8 @@ KviSoundGeneralOptionsWidget::~KviSoundGeneralOptionsWidget()
void KviSoundGeneralOptionsWidget::showEvent(QShowEvent *)
{
-qDebug("showEvent");
if(!m_bFirstShow)
return;
-qDebug("m_bFirstShow");
// We fill these boxes only before the first show since the soundFillBox()
// is likely to trigger sound system-detection which may take time...
@@ -223,7 +221,6 @@ void KviSoundGeneralOptionsWidget::mediaAutoDetect()
void KviSoundGeneralOptionsWidget::soundFillBox()
{
- qDebug("soundFillBox");
QStringList l;
QStringList::Iterator it;
int cnt;
@@ -237,11 +234,9 @@ void KviSoundGeneralOptionsWidget::soundFillBox()
goto disable;
m_pSoundSystemBox->clear();
-qDebug("soundFillBox clear");
for ( it = l.begin(); it != l.end(); ++it )
{
m_pSoundSystemBox->addItem(*it);
- qDebug("soundFillBox add %s",it->toUtf8().data());
}
cnt = m_pSoundSystemBox->count();
@@ -249,11 +244,9 @@ qDebug("soundFillBox clear");
for(i=0;i<cnt;i++)
{
QString t = m_pSoundSystemBox->itemText(i);
- qDebug("soundFillBox check %s==%s",t.toUtf8().data(),KVI_OPTION_STRING(KviOption_stringSoundSystem).toUtf8().data());
if(KviQString::equalCI(t,KVI_OPTION_STRING(KviOption_stringSoundSystem)))
{
m_pSoundSystemBox->setCurrentIndex(i);
-qDebug("soundFillBox check ok setCurrentIndex %i",i);
break;
}
}