diff options
Diffstat (limited to 'src/kernel/qapplication.cpp')
-rw-r--r-- | src/kernel/qapplication.cpp | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/src/kernel/qapplication.cpp b/src/kernel/qapplication.cpp index 5ba5f5b21..c6bde72a7 100644 --- a/src/kernel/qapplication.cpp +++ b/src/kernel/qapplication.cpp @@ -197,7 +197,6 @@ hasPendingEvents(), notify(), macEventFilter(), - qwsEventFilter(), x11EventFilter(), x11ProcessEvent(), winEventFilter(). @@ -214,7 +213,6 @@ \i colorSpec(), setColorSpec(), - qwsSetCustomColors(). \row \i Text handling @@ -909,10 +907,6 @@ TQApplication::TQApplication( int &argc, char **argv, bool GUIenabled, bool SMen /*! Constructs an application object with \a argc command line arguments in \a argv. - - For TQt/Embedded, passing \c TQApplication::GuiServer for \a type - makes this application the server (equivalent to running with the - -qws option). */ TQApplication::TQApplication( int &argc, char **argv, Type type ) { @@ -1418,8 +1412,6 @@ TQStyle& TQApplication::style() style = "Motif"; // default style for X11 #elif defined(TQ_WS_MAC) style = "Macintosh"; // default style for all Mac's -#elif defined(TQ_WS_QWS) - style = "Compact"; // default style for small devices #endif } app_style = TQStyleFactory::create( style ); @@ -4840,7 +4832,7 @@ void MyApplication::commitData( TQSessionManager& sm ) { Stubbed session management support *****************************************************************************/ #ifndef TQT_NO_SESSIONMANAGER -#if defined( TQT_NO_SM_SUPPORT ) || defined( TQ_WS_WIN ) || defined( TQ_WS_MAC ) || defined( TQ_WS_QWS ) +#if defined( TQT_NO_SM_SUPPORT ) || defined( TQ_WS_WIN ) || defined( TQ_WS_MAC ) class TQSessionManagerData { |