diff options
Diffstat (limited to 'superkaramba/src/taskmanager.cpp')
| -rw-r--r-- | superkaramba/src/taskmanager.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/superkaramba/src/taskmanager.cpp b/superkaramba/src/taskmanager.cpp index b666d28..abfd99f 100644 --- a/superkaramba/src/taskmanager.cpp +++ b/superkaramba/src/taskmanager.cpp @@ -40,19 +40,19 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. template class TQPtrList<Task>; -// Hack: create a global KWinModule without a parent. We +// Hack: create a global TWinModule without a parent. We // can't make it a child of TaskManager because more than one // TaskManager might be created. We can't make it a class // variable without changing Task, which also uses it. // So, we'll leak a little memory, but it's better than crashing. -// The real problem is that KWinModule should be a singleton. -KWinModule* twin_module = 0; +// The real problem is that TWinModule should be a singleton. +TWinModule* twin_module = 0; TaskManager::TaskManager(TQObject *parent, const char *name) : TQObject(parent, name), _active(0), _startup_info( NULL ) { - twin_module = new KWinModule(); + twin_module = new TWinModule(); // TDEGlobal::locale()->insertCatalogue("libtaskmanager"); connect(twin_module, TQ_SIGNAL(windowAdded(WId)), TQ_SLOT(windowAdded(WId))); |
