summaryrefslogtreecommitdiffstats
path: root/kommander/executor/instance.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2023-12-21 11:50:29 +0900
committerMichele Calgaro <[email protected]>2023-12-27 11:42:47 +0900
commit86fed9b788837a7f02086639225c66ecd83065e1 (patch)
tree610edf3b7e43182a7e200a84e2fba357369a1d13 /kommander/executor/instance.cpp
parent8954d7640bd43ba663a75334b5d30d3f5f62174b (diff)
downloadtdewebdev-86fed9b788837a7f02086639225c66ecd83065e1.tar.gz
tdewebdev-86fed9b788837a7f02086639225c66ecd83065e1.zip
Replace various '#define' strings - part 6
Signed-off-by: Michele Calgaro <[email protected]> (cherry picked from commit 9e553028bac0f0d934926318a7b13aa4d8474b27)
Diffstat (limited to 'kommander/executor/instance.cpp')
-rw-r--r--kommander/executor/instance.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/kommander/executor/instance.cpp b/kommander/executor/instance.cpp
index 43cf6c13..b746ec97 100644
--- a/kommander/executor/instance.cpp
+++ b/kommander/executor/instance.cpp
@@ -121,7 +121,7 @@ bool Instance::build(const KURL& fname)
window->setFileName(fname.path().local8Bit());
// FIXME : Should verify that all of the widgets in the dialog derive from KommanderWidget
- m_textInstance = kommanderWidget(TQT_TQOBJECT(m_instance));
+ m_textInstance = kommanderWidget(m_instance);
if (!m_textInstance) // Main dialog/window is not a Kommander widget - look for one
{
@@ -437,7 +437,7 @@ TQStringList Instance::children(const TQString& parent, bool recursive)
TQObject* child = stringToWidget(parent);
TQObjectList* widgets;
if (!child)
- child = TQT_TQOBJECT(m_instance);
+ child = m_instance;
if (child->inherits("TQWidget"))
{
widgets = child->queryList("TQWidget", 0, false, recursive);