summaryrefslogtreecommitdiffstats
path: root/kmix/kmix.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kmix/kmix.cpp')
-rw-r--r--kmix/kmix.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/kmix/kmix.cpp b/kmix/kmix.cpp
index 8db11212..b6a7ea4c 100644
--- a/kmix/kmix.cpp
+++ b/kmix/kmix.cpp
@@ -97,7 +97,7 @@ KMixWindow::KMixWindow()
{
hide();
}
- connect( kapp, TQ_SIGNAL( aboutToQuit()), TQ_SLOT( saveSettings()) );
+ connect( tdeApp, TQ_SIGNAL( aboutToQuit()), TQ_SLOT( saveSettings()) );
}
@@ -255,7 +255,7 @@ KMixWindow::loadConfig()
if (a) a->setChecked( KMixSettings::menubar() );
// restore window size and position
- if ( !kapp->isRestored() ) // done by the session manager otherwise
+ if ( !tdeApp->isRestored() ) // done by the session manager otherwise
{
TQSize size = KMixSettings::size();
if(!size.isEmpty())
@@ -333,7 +333,7 @@ KMixWindow::initMixerWidgets()
bool
KMixWindow::queryClose ( )
{
- if ( KMixSettings::allowDocking() && !kapp->sessionSaving() )
+ if ( KMixSettings::allowDocking() && !tdeApp->sessionSaving() )
{
hide();
return false;
@@ -345,7 +345,7 @@ KMixWindow::queryClose ( )
void
KMixWindow::quit()
{
- kapp->quit();
+ tdeApp->quit();
}
@@ -449,7 +449,7 @@ KMixWindow::applyPrefs()
this->setUpdatesEnabled(true);
this->repaint(); // make KMix look fast (saveConfig() often uses several seconds)
- kapp->processEvents();
+ tdeApp->processEvents();
saveConfig();
}