summaryrefslogtreecommitdiffstats
path: root/tdecore/tdeapplication.h
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-08-08 14:52:20 -0500
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-08-08 14:52:20 -0500
commit7cc3a975d2b1ac2d9efa6abef037533fc8bfec7c (patch)
tree120c23353382e666c8b034944c04f7cd29c7c7e3 /tdecore/tdeapplication.h
parent1f3ee12a9a3fc09f69f45201c857a02b7abb127c (diff)
downloadtdelibs-7cc3a975d2b1ac2d9efa6abef037533fc8bfec7c.tar.gz
tdelibs-7cc3a975d2b1ac2d9efa6abef037533fc8bfec7c.zip
Allow session manager to be disable on creation when argc and argv are not passed to TDEApplication
This relates to Bug 760
Diffstat (limited to 'tdecore/tdeapplication.h')
-rw-r--r--tdecore/tdeapplication.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/tdecore/tdeapplication.h b/tdecore/tdeapplication.h
index 089f9f940..c22e9edbb 100644
--- a/tdecore/tdeapplication.h
+++ b/tdecore/tdeapplication.h
@@ -128,7 +128,14 @@ public:
* @param GUIenabled Set to false to disable all GUI stuff. This implies
* no styles either.
*/
+ TDEApplication( bool allowStyles=true, bool GUIenabled=true, bool SMenabled=true);
+
+#ifdef TDEAPPLICATION_BINARY_COMPAT_HACK
+ // FIXME
+ // FOR BINARY COMPATIBILITY ONLY
+ // REMOVE WHEN PRACTICAL!
TDEApplication( bool allowStyles=true, bool GUIenabled=true);
+#endif // TDEAPPLICATION_BINARY_COMPAT_HACK
#ifdef Q_WS_X11
/**