summaryrefslogtreecommitdiffstats
path: root/languages/ruby/debugger
diff options
context:
space:
mode:
Diffstat (limited to 'languages/ruby/debugger')
-rw-r--r--languages/ruby/debugger/dbgtoolbar.cpp2
-rw-r--r--languages/ruby/debugger/dbgtoolbar.h4
2 files changed, 3 insertions, 3 deletions
diff --git a/languages/ruby/debugger/dbgtoolbar.cpp b/languages/ruby/debugger/dbgtoolbar.cpp
index 138f1a8c..691a353a 100644
--- a/languages/ruby/debugger/dbgtoolbar.cpp
+++ b/languages/ruby/debugger/dbgtoolbar.cpp
@@ -269,7 +269,7 @@ DbgToolBar::DbgToolBar(RubyDebuggerPart* part,
docker_(0),
dockWindow_(new KSystemTray(parent))
{
- winModule_ = new KWinModule(this);
+ winModule_ = new TWinModule(this);
docker_ = new DbgDocker(parent, this, BarIcon("dbgnext"));
connect(docker_, TQ_SIGNAL(clicked()), part_, TQ_SLOT(slotStepOver()));
diff --git a/languages/ruby/debugger/dbgtoolbar.h b/languages/ruby/debugger/dbgtoolbar.h
index a98dfc74..49a4e71f 100644
--- a/languages/ruby/debugger/dbgtoolbar.h
+++ b/languages/ruby/debugger/dbgtoolbar.h
@@ -22,7 +22,7 @@
#ifndef _DBGTOOLBAR_H_
#define _DBGTOOLBAR_H_
-class KWinModule;
+class TWinModule;
#include <ksystemtray.h>
#include <twin.h> // needed for WId :(
@@ -78,7 +78,7 @@ private:
RubyDebuggerPart* part_;
WId activeWindow_;
- KWinModule* winModule_;
+ TWinModule* winModule_;
DbgButton* bKDevFocus_;
DbgButton* bPrevFocus_;
bool appIsActive_;