aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules')
-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;
}
}