summaryrefslogtreecommitdiffstats
path: root/tdeui/kbuttonbox.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tdeui/kbuttonbox.cpp')
-rw-r--r--tdeui/kbuttonbox.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tdeui/kbuttonbox.cpp b/tdeui/kbuttonbox.cpp
index a1f107996..54329412e 100644
--- a/tdeui/kbuttonbox.cpp
+++ b/tdeui/kbuttonbox.cpp
@@ -130,7 +130,7 @@ KButtonBox::addButton(
TQPushButton * pb = addButton(text, noexpand);
if ((0 != receiver) && (0 != slot))
- TQObject::connect(pb, TQT_SIGNAL(clicked()), receiver, slot);
+ TQObject::connect(pb, TQ_SIGNAL(clicked()), receiver, slot);
return pb;
}
@@ -146,7 +146,7 @@ KButtonBox::addButton(
TQPushButton * pb = addButton(guiitem, noexpand);
if ((0 != receiver) && (0 != slot))
- TQObject::connect(pb, TQT_SIGNAL(clicked()), receiver, slot);
+ TQObject::connect(pb, TQ_SIGNAL(clicked()), receiver, slot);
return pb;
}