summaryrefslogtreecommitdiffstats
path: root/kommander/widgets/groupbox.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-12-21 11:50:29 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-12-27 11:42:47 +0900
commit86fed9b788837a7f02086639225c66ecd83065e1 (patch)
tree610edf3b7e43182a7e200a84e2fba357369a1d13 /kommander/widgets/groupbox.cpp
parent8954d7640bd43ba663a75334b5d30d3f5f62174b (diff)
downloadtdewebdev-86fed9b788837a7f02086639225c66ecd83065e1.tar.gz
tdewebdev-86fed9b788837a7f02086639225c66ecd83065e1.zip
Replace various '#define' strings - part 6
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit 9e553028bac0f0d934926318a7b13aa4d8474b27)
Diffstat (limited to 'kommander/widgets/groupbox.cpp')
-rw-r--r--kommander/widgets/groupbox.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kommander/widgets/groupbox.cpp b/kommander/widgets/groupbox.cpp
index a90f447e..027168d8 100644
--- a/kommander/widgets/groupbox.cpp
+++ b/kommander/widgets/groupbox.cpp
@@ -32,7 +32,7 @@
GroupBox::GroupBox(TQWidget *a_parent, const char *a_name)
- : TQGroupBox(a_parent, a_name), KommanderWidget(TQT_TQOBJECT(this))
+ : TQGroupBox(a_parent, a_name), KommanderWidget(this)
{
TQStringList states;
states << "default";
@@ -84,13 +84,13 @@ void GroupBox::populate()
void GroupBox::insertChild(TQObject *a_child)
{
m_childList.append(a_child);
- TQT_TQOBJECT(this)->TQObject::insertChild(a_child);
+ this->TQObject::insertChild(a_child);
}
void GroupBox::removeChild(TQObject *a_child)
{
m_childList.remove(a_child);
- TQT_TQOBJECT(this)->TQObject::removeChild(a_child);
+ this->TQObject::removeChild(a_child);
}
void GroupBox::showEvent( TQShowEvent *e )