summaryrefslogtreecommitdiffstats
path: root/kdecore/kapplication.h
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-08-08 14:52:20 -0500
committerSlávek Banko <slavek.banko@axis.cz>2015-12-24 02:20:20 +0100
commitf05253b5e0474417234fa808f729f201c4600934 (patch)
tree960b2a84f69f78102710ed47cc77098b4439e22e /kdecore/kapplication.h
parent83e71b4192b232fa5c3e17cc729ea8c94425cba5 (diff)
downloadtdelibs-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.h7
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
/**