summaryrefslogtreecommitdiffstats
path: root/src/option/k3bmiscoptiontab.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/option/k3bmiscoptiontab.cpp')
-rw-r--r--src/option/k3bmiscoptiontab.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/option/k3bmiscoptiontab.cpp b/src/option/k3bmiscoptiontab.cpp
index 7176364..78b7927 100644
--- a/src/option/k3bmiscoptiontab.cpp
+++ b/src/option/k3bmiscoptiontab.cpp
@@ -32,7 +32,7 @@
#include <tdelocale.h>
#include <tdeconfig.h>
#include <kdialog.h>
-#include <kstandarddirs.h>
+#include <tdestandarddirs.h>
#include <tdemessagebox.h>
#include <kurlrequester.h>
#include <kcombobox.h>
@@ -42,8 +42,8 @@ K3bMiscOptionTab::K3bMiscOptionTab(TQWidget *parent, const char *name )
: base_K3bMiscOptionTab(parent,name)
{
m_editTempDir->setMode( KFile::Directory );
- connect( m_buttonConfigureAudioOutput, TQT_SIGNAL(clicked()),
- this, TQT_SLOT(slotConfigureAudioOutput()) );
+ connect( m_buttonConfigureAudioOutput, TQ_SIGNAL(clicked()),
+ this, TQ_SLOT(slotConfigureAudioOutput()) );
m_comboActionDialogSettings->insertItem( K3bInteractionDialog::LOAD_K3B_DEFAULTS,
i18n("Default Settings"),
@@ -69,7 +69,7 @@ K3bMiscOptionTab::~K3bMiscOptionTab()
void K3bMiscOptionTab::readSettings()
{
- TDEConfig* c = kapp->config();
+ TDEConfig* c = tdeApp->config();
c->setGroup( "General Options" );
m_checkSaveOnExit->setChecked( c->readBoolEntry( "ask_for_saving_changes_on_exit", true ) );
m_checkShowSplash->setChecked( c->readBoolEntry("Show splash", true) );
@@ -106,7 +106,7 @@ void K3bMiscOptionTab::readSettings()
bool K3bMiscOptionTab::saveSettings()
{
- TDEConfig* c = kapp->config();
+ TDEConfig* c = tdeApp->config();
c->setGroup( "General Options" );
c->writeEntry( "ask_for_saving_changes_on_exit", m_checkSaveOnExit->isChecked() );
c->writeEntry( "Show splash", m_checkShowSplash->isChecked() );