diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-08-08 14:52:20 -0500 |
---|---|---|
committer | Slávek Banko <slavek.banko@axis.cz> | 2015-12-24 02:20:20 +0100 |
commit | f05253b5e0474417234fa808f729f201c4600934 (patch) | |
tree | 960b2a84f69f78102710ed47cc77098b4439e22e /kdecore/kapplication.h | |
parent | 83e71b4192b232fa5c3e17cc729ea8c94425cba5 (diff) | |
download | tdelibs-f05253b5e0474417234fa808f729f201c4600934.tar.gz tdelibs-f05253b5e0474417234fa808f729f201c4600934.zip |
Allow session manager to be disable on creation when argc and argv are not passed to TDEApplication
This relates to Bug 760
(cherry picked from commit 7cc3a975d2b1ac2d9efa6abef037533fc8bfec7c)
Diffstat (limited to 'kdecore/kapplication.h')
-rw-r--r-- | kdecore/kapplication.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/kdecore/kapplication.h b/kdecore/kapplication.h index 25c527abc..f2e121879 100644 --- a/kdecore/kapplication.h +++ b/kdecore/kapplication.h @@ -128,7 +128,14 @@ public: * @param GUIenabled Set to false to disable all GUI stuff. This implies * no styles either. */ + KApplication( bool allowStyles=true, bool GUIenabled=true, bool SMenabled=true); + +#ifdef TDEAPPLICATION_BINARY_COMPAT_HACK + // FIXME + // FOR BINARY COMPATIBILITY ONLY + // REMOVE WHEN PRACTICAL! KApplication( bool allowStyles=true, bool GUIenabled=true); +#endif // TDEAPPLICATION_BINARY_COMPAT_HACK #ifdef Q_WS_X11 /** |