diff options
Diffstat (limited to 'kbiff/main.cpp')
-rw-r--r-- | kbiff/main.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/kbiff/main.cpp b/kbiff/main.cpp index 925a55c..d205db3 100644 --- a/kbiff/main.cpp +++ b/kbiff/main.cpp @@ -49,7 +49,7 @@ extern "C" TDE_EXPORT int kdemain(int argc, char *argv[]) args->clear(); // restore this app if it is - if (kapp->isRestored()) + if (tdeApp->isRestored()) kbiff.readSessionConfig(); else { @@ -75,11 +75,11 @@ extern "C" TDE_EXPORT int kdemain(int argc, char *argv[]) // check if we are docked (only if restored) if (kbiff.isDocked()) { - kapp->setTopWidget(new TQWidget); + tdeApp->setTopWidget(new TQWidget); KWin::setSystemTrayWindowFor(kbiff.winId(), 0); } else - kapp->setTopWidget(&kbiff); + tdeApp->setTopWidget(&kbiff); kbiff.show(); |