From 647091e6d33e71158a2a5f9ae5e883aae66b2bfe Mon Sep 17 00:00:00 2001 From: Michele Calgaro Date: Thu, 5 Mar 2026 09:28:33 +0900 Subject: [PATCH] Rename KWinModule to TWinModule Signed-off-by: Michele Calgaro --- languages/cpp/debugger/dbgtoolbar.cpp | 2 +- languages/cpp/debugger/dbgtoolbar.h | 4 ++-- languages/ruby/debugger/dbgtoolbar.cpp | 2 +- languages/ruby/debugger/dbgtoolbar.h | 4 ++-- 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 #include // 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 #include // needed for WId :( @@ -78,7 +78,7 @@ private: RubyDebuggerPart* part_; WId activeWindow_; - KWinModule* winModule_; + TWinModule* winModule_; DbgButton* bKDevFocus_; DbgButton* bPrevFocus_; bool appIsActive_;