summaryrefslogtreecommitdiffstats
path: root/tdecore/tdestartupinfo.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tdecore/tdestartupinfo.cpp')
-rw-r--r--tdecore/tdestartupinfo.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/tdecore/tdestartupinfo.cpp b/tdecore/tdestartupinfo.cpp
index e34964c25..a2ea6c4a7 100644
--- a/tdecore/tdestartupinfo.cpp
+++ b/tdecore/tdestartupinfo.cpp
@@ -94,7 +94,7 @@ struct TDEStartupInfoPrivate
// contains ASN's that had change: but no new: yet
TQMap< TDEStartupInfoId, TDEStartupInfo::Data > uninited_startups;
#ifdef TQ_WS_X11
- KWinModule* wm_module;
+ TWinModule* wm_module;
KXMessages msgs;
#endif
TQTimer* cleanup;
@@ -131,9 +131,9 @@ void TDEStartupInfo::init( int flags_P )
d = new TDEStartupInfoPrivate( flags_P );
#ifdef TQ_WS_X11
- if( !( d->flags & DisableKWinModule ))
+ if( !( d->flags & DisableTWinModule ))
{
- d->wm_module = new KWinModule( this );
+ d->wm_module = new TWinModule( this );
connect( d->wm_module, TQ_SIGNAL( windowAdded( WId )), TQ_SLOT( slot_window_added( WId )));
connect( d->wm_module, TQ_SIGNAL( systemTrayWindowAdded( WId )), TQ_SLOT( slot_window_added( WId )));
}
@@ -163,11 +163,11 @@ void TDEStartupInfo::got_message( const TQString& msg_P )
got_remove_startup_info( msg.mid( 7 ));
}
-// if the application stops responding for a while, KWinModule may get
+// if the application stops responding for a while, TWinModule may get
// the information about the already mapped window before KXMessages
// actually gets the info about the started application (depends
// on their order in X11 event filter in TDEApplication)
-// simply delay info from KWinModule a bit
+// simply delay info from TWinModule a bit
// SELI???
namespace
{