summaryrefslogtreecommitdiffstats
path: root/kdejava/koala/org/kde/koala/KMainWindow.java
diff options
context:
space:
mode:
Diffstat (limited to 'kdejava/koala/org/kde/koala/KMainWindow.java')
-rw-r--r--kdejava/koala/org/kde/koala/KMainWindow.java14
1 files changed, 7 insertions, 7 deletions
diff --git a/kdejava/koala/org/kde/koala/KMainWindow.java b/kdejava/koala/org/kde/koala/KMainWindow.java
index e11119bb..78bc533b 100644
--- a/kdejava/koala/org/kde/koala/KMainWindow.java
+++ b/kdejava/koala/org/kde/koala/KMainWindow.java
@@ -37,7 +37,7 @@ import org.kde.qt.TQMainWindow;
Fixed aspect ratios (heightForWidth()) and fixed width widgets are
not supported.
KMainWindow will set icon, mini icon and caption, which it gets
- from KApplication. It provides full session management, and
+ from TDEApplication. It provides full session management, and
will save its position, geometry and positions of toolbars and
menubar on logout. If you want to save additional data, reimplement
saveProperties() and (to read them again on next login)
@@ -54,7 +54,7 @@ import org.kde.qt.TQMainWindow;
@author Reginald Stadlbauer (reggie@kde.org) Stephan Kulow (coolo@kde.org), Matthias Ettrich (ettrich@kde.org), Chris Schlaeger (cs@kde.org), Sven Radej (radej@kde.org). Maintained by Sven Radej (radej@kde.org)
@short %KDE top level main window.
- @see KApplication
+ @see TDEApplication
*/
public class KMainWindow extends TQMainWindow implements KXMLGUIBuilderInterface, KXMLGUIClientInterface {
@@ -635,14 +635,14 @@ public class KMainWindow extends TQMainWindow implements KXMLGUIBuilderInterface
user interaction).
If you need to do serious things on exit (like shutting a
dial-up connection down), connect to the signal
- KApplication.shutDown().
+ TDEApplication.shutDown().
Default implementation returns <code>true.</code> Returning <code>false</code> will
cancel the exiting. In the latter case, the last window will
- remain visible. If KApplication.sessionSaving() is true, refusing
+ remain visible. If TDEApplication.sessionSaving() is true, refusing
the exit will also cancel KDE logout.
@short Called before the very last window is closed, either by the user or indirectly by the session manager.
@see #queryClose
- @see KApplication#sessionSaving
+ @see TDEApplication#sessionSaving
*/
protected native boolean queryExit();
/**
@@ -651,7 +651,7 @@ public class KMainWindow extends TQMainWindow implements KXMLGUIBuilderInterface
The purpose of this function is to prepare the window in a way that it is
safe to close it, i.e. without the user losing some data.
Default implementation returns true. Returning <code>false</code> will cancel
- the closing, and, if KApplication.sessionSaving() is true, it will also
+ the closing, and, if TDEApplication.sessionSaving() is true, it will also
cancel KDE logout.
Reimplement this function to prevent the user from losing data.
Example:
@@ -673,7 +673,7 @@ public class KMainWindow extends TQMainWindow implements KXMLGUIBuilderInterface
may be canceled, in which case the document should remain open.
@short Called before the window is closed, either by the user or indirectly by the session manager.
@see #queryExit
- @see KApplication#sessionSaving
+ @see TDEApplication#sessionSaving
*/
protected native boolean queryClose();
/**