diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-20 00:21:02 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-20 00:21:02 -0600 |
commit | 8e7816b2f9f62a2df094c5b2a7aa5abb6bc1226a (patch) | |
tree | 19ff5ecf5e6b5168e5503677f18b85f3dfa91f95 /tdeui/kmainwindow.h | |
parent | 5bca2e3e42d02f8fed9ffc399ea14f8a05694cb0 (diff) | |
download | tdelibs-8e7816b2f9f62a2df094c5b2a7aa5abb6bc1226a.tar.gz tdelibs-8e7816b2f9f62a2df094c5b2a7aa5abb6bc1226a.zip |
Rename KApplication to TDEApplication to avoid conflicts with KDE4
Diffstat (limited to 'tdeui/kmainwindow.h')
-rw-r--r-- | tdeui/kmainwindow.h | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/tdeui/kmainwindow.h b/tdeui/kmainwindow.h index 8aba596f1..d03a2efcf 100644 --- a/tdeui/kmainwindow.h +++ b/tdeui/kmainwindow.h @@ -73,7 +73,7 @@ class DCOPObject; * 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) @@ -90,7 +90,7 @@ class DCOPObject; * window is closed. If you do not want this behavior, specify 0 as * widget flag in the constructor. * - * @see KApplication + * @see TDEApplication * @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) */ @@ -798,9 +798,9 @@ protected: // would be useful only for the annoying 'really quit' dialog, which // also doesn't make sense in apps with multiple mainwindows. // And saving configuration in something called queryExit()? IMHO - // one can e.g. use KApplication::shutDown(), which if nothing else + // one can e.g. use TDEApplication::shutDown(), which if nothing else // has at least better fitting name. - // See also KApplication::sessionSaving(). + // See also TDEApplication::sessionSaving(). // This stuff should get changed somehow, so that it at least doesn't // mess with session management. /** @@ -820,15 +820,15 @@ protected: 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 @p true. Returning @p false 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. @see queryClose() - @see KApplication::sessionSaving() + @see TDEApplication::sessionSaving() */ virtual bool queryExit(); @@ -840,7 +840,7 @@ protected: safe to close it, i.e. without the user losing some data. Default implementation returns true. Returning @p false 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. @@ -864,7 +864,7 @@ protected: may be canceled, in which case the document should remain open. @see queryExit() - @see KApplication::sessionSaving() + @see TDEApplication::sessionSaving() */ virtual bool queryClose(); |