summaryrefslogtreecommitdiffstats
path: root/tdeui/tdemainwindow.h
diff options
context:
space:
mode:
Diffstat (limited to 'tdeui/tdemainwindow.h')
-rw-r--r--tdeui/tdemainwindow.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/tdeui/tdemainwindow.h b/tdeui/tdemainwindow.h
index 0a624b040..82b29e548 100644
--- a/tdeui/tdemainwindow.h
+++ b/tdeui/tdemainwindow.h
@@ -235,7 +235,7 @@ public:
*
* That means clients could simply do the following:
* \code
- * if (kapp->isRestored()){
+ * if (tdeApp->isRestored()){
* int n = 1;
* while (TDEMainWindow::canBeRestored(n)){
* (new childMW)->restore(n);
@@ -260,7 +260,7 @@ public:
* for backwards compatibility with 3.1 and 3.0 branches:
*
* \code
- * if (kapp->isRestored())
+ * if (tdeApp->isRestored())
* RESTORE(childMW)
* else {
* // create default application as usual
@@ -275,7 +275,7 @@ public:
* use the templated kRestoreMainWindows global functions:
*
* \code
- * if (kapp->isRestored())
+ * if (tdeApp->isRestored())
* kRestoreMainWindows< childMW1, childMW2, childMW3 >();
* else {
* // create default application as usual