summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2026-03-05 09:28:33 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2026-03-05 09:28:33 +0900
commit647091e6d33e71158a2a5f9ae5e883aae66b2bfe (patch)
tree2537b81c7fd02be0321e640c3ff3108218188939
parentce7cada3e1ce3e62e87380ca6b4f1cf598495891 (diff)
downloadtdevelop-647091e6d33e71158a2a5f9ae5e883aae66b2bfe.tar.gz
tdevelop-647091e6d33e71158a2a5f9ae5e883aae66b2bfe.zip
Rename KWinModule to TWinModuleHEADmaster
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
-rw-r--r--languages/cpp/debugger/dbgtoolbar.cpp2
-rw-r--r--languages/cpp/debugger/dbgtoolbar.h4
-rw-r--r--languages/ruby/debugger/dbgtoolbar.cpp2
-rw-r--r--languages/ruby/debugger/dbgtoolbar.h4
4 files changed, 6 insertions, 6 deletions
diff --git a/languages/cpp/debugger/dbgtoolbar.cpp b/languages/cpp/debugger/dbgtoolbar.cpp
index bf503bad..de3ccafa 100644
--- a/languages/cpp/debugger/dbgtoolbar.cpp
+++ b/languages/cpp/debugger/dbgtoolbar.cpp
@@ -270,7 +270,7 @@ DbgToolBar::DbgToolBar(DebuggerPart* 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/cpp/debugger/dbgtoolbar.h b/languages/cpp/debugger/dbgtoolbar.h
index 717643b4..b23e3e47 100644
--- a/languages/cpp/debugger/dbgtoolbar.h
+++ b/languages/cpp/debugger/dbgtoolbar.h
@@ -16,7 +16,7 @@
#ifndef _DBGTOOLBAR_H_
#define _DBGTOOLBAR_H_
-class KWinModule;
+class TWinModule;
#include <ksystemtray.h>
#include <twin.h> // needed for WId :(
@@ -72,7 +72,7 @@ private:
DebuggerPart* part_;
WId activeWindow_;
- KWinModule* winModule_;
+ TWinModule* winModule_;
DbgButton* bKDevFocus_;
DbgButton* bPrevFocus_;
bool appIsActive_;
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_;