diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-08-08 14:52:20 -0500 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-08-08 14:52:20 -0500 |
commit | 7cc3a975d2b1ac2d9efa6abef037533fc8bfec7c (patch) | |
tree | 120c23353382e666c8b034944c04f7cd29c7c7e3 /tdecore/tdeapplication.h | |
parent | 1f3ee12a9a3fc09f69f45201c857a02b7abb127c (diff) | |
download | tdelibs-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.h | 7 |
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 /** |