diff options
Diffstat (limited to 'twin')
-rw-r--r-- | twin/sm.cpp | 4 | ||||
-rw-r--r-- | twin/sm.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/twin/sm.cpp b/twin/sm.cpp index 3a6aa3ebe..752ea988c 100644 --- a/twin/sm.cpp +++ b/twin/sm.cpp @@ -27,7 +27,7 @@ License. See the file "COPYING" for the exact licensing terms. namespace KWinInternal { -bool SessionManaged::saveState( QSessionManager& sm ) +bool SessionManaged::saveState( TQSessionManager& sm ) { // If the session manager is ksmserver, save stacking // order, active window, active desktop etc. in phase 1, @@ -53,7 +53,7 @@ bool SessionManaged::saveState( QSessionManager& sm ) } // I bet this is broken, just like everywhere else in KDE -bool SessionManaged::commitData( QSessionManager& sm ) +bool SessionManaged::commitData( TQSessionManager& sm ) { if ( !sm.isPhase2() ) Workspace::self()->sessionSaveStarted(); @@ -80,8 +80,8 @@ class SessionManaged : public KSessionManaged { public: - virtual bool saveState( QSessionManager& sm ); - virtual bool commitData( QSessionManager& sm ); + virtual bool saveState( TQSessionManager& sm ); + virtual bool commitData( TQSessionManager& sm ); }; } // namespace |