summaryrefslogtreecommitdiffstats
path: root/ksirtet
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2025-01-20 18:26:21 +0900
committerMichele Calgaro <[email protected]>2025-01-27 11:03:54 +0900
commitbd4ee3ccc15d0776614a8435850a2eb1faf5a71f (patch)
treec2ce8973a25d1e56e92a5a0b179693ed1f4f42ad /ksirtet
parent3191f81874fcfdd0466f6f42beb89da6245b1a0a (diff)
downloadtdegames-bd4ee3ccc15d0776614a8435850a2eb1faf5a71f.tar.gz
tdegames-bd4ee3ccc15d0776614a8435850a2eb1faf5a71f.zip
Use tdeApp
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'ksirtet')
-rw-r--r--ksirtet/ksirtet/main.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/ksirtet/ksirtet/main.cpp b/ksirtet/ksirtet/main.cpp
index c586c096..403b4448 100644
--- a/ksirtet/ksirtet/main.cpp
+++ b/ksirtet/ksirtet/main.cpp
@@ -81,11 +81,11 @@ int main(int argc, char **argv)
(void) Prefs::self(); // Create preferences
- if ( kapp->isRestored() ) RESTORE(KSMainWindow)
+ if ( tdeApp->isRestored() ) RESTORE(KSMainWindow)
else {
KSMainWindow *mw = new KSMainWindow;
- kapp->setMainWidget(mw);
+ tdeApp->setMainWidget(mw);
mw->show();
}
- return kapp->exec();
+ return tdeApp->exec();
}