summaryrefslogtreecommitdiffstats
path: root/plugins/audiooutput
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-25 00:06:28 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-25 00:06:28 -0600
commit83b79bb29aaa412caec6abcdb42ca21d248b3b3a (patch)
treef48e8ae855d4a0be0c3ecf912a92168a829ff8c5 /plugins/audiooutput
parent2a3ced9fbd85b4fdbfa9b0a91f8d22e35ceaf6b5 (diff)
downloadk3b-83b79bb29aaa412caec6abcdb42ca21d248b3b3a.tar.gz
k3b-83b79bb29aaa412caec6abcdb42ca21d248b3b3a.zip
Rename KCModule, KConfig, KIO, KServer, and KSocket to avoid conflicts with KDE4
Diffstat (limited to 'plugins/audiooutput')
-rw-r--r--plugins/audiooutput/alsa/k3balsaoutputplugin.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/audiooutput/alsa/k3balsaoutputplugin.cpp b/plugins/audiooutput/alsa/k3balsaoutputplugin.cpp
index 192c337..8781401 100644
--- a/plugins/audiooutput/alsa/k3balsaoutputplugin.cpp
+++ b/plugins/audiooutput/alsa/k3balsaoutputplugin.cpp
@@ -148,7 +148,7 @@ bool K3bAlsaOutputPlugin::init()
{
cleanup();
- KConfigGroup c( k3bcore->config(), "Alsa Output Plugin" );
+ TDEConfigGroup c( k3bcore->config(), "Alsa Output Plugin" );
TQString alsaDevice = c.readEntry( "output device", "default" );
int err = snd_pcm_open( &d->pcm_playback, alsaDevice.local8Bit(), SND_PCM_STREAM_PLAYBACK, 0 );
@@ -276,7 +276,7 @@ K3bAlsaOutputPluginConfigWidget::~K3bAlsaOutputPluginConfigWidget()
void K3bAlsaOutputPluginConfigWidget::loadConfig()
{
- KConfigGroup c( k3bcore->config(), "Alsa Output Plugin" );
+ TDEConfigGroup c( k3bcore->config(), "Alsa Output Plugin" );
m_comboDevice->setCurrentText( c.readEntry( "output device", "default" ) );
}
@@ -284,7 +284,7 @@ void K3bAlsaOutputPluginConfigWidget::loadConfig()
void K3bAlsaOutputPluginConfigWidget::saveConfig()
{
- KConfigGroup c( k3bcore->config(), "Alsa Output Plugin" );
+ TDEConfigGroup c( k3bcore->config(), "Alsa Output Plugin" );
c.writeEntry( "output device", m_comboDevice->currentText() );
}