summaryrefslogtreecommitdiffstats
path: root/kommander/widgets/lineedit.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kommander/widgets/lineedit.cpp')
-rw-r--r--kommander/widgets/lineedit.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kommander/widgets/lineedit.cpp b/kommander/widgets/lineedit.cpp
index 7a01ae4e..f75526d9 100644
--- a/kommander/widgets/lineedit.cpp
+++ b/kommander/widgets/lineedit.cpp
@@ -31,15 +31,15 @@ enum functions {
};
LineEdit::LineEdit(TQWidget *a_parent, const char *a_name)
- : KLineEdit(a_parent, a_name), KommanderWidget(TQT_TQOBJECT(this))
+ : KLineEdit(a_parent, a_name), KommanderWidget(this)
{
TQStringList states;
states << "default";
setStates(states);
setDisplayStates(states);
- connect(this, TQT_SIGNAL(textChanged(const TQString &)), this,
- TQT_SIGNAL(widgetTextChanged(const TQString &)));
+ connect(this, TQ_SIGNAL(textChanged(const TQString &)), this,
+ TQ_SIGNAL(widgetTextChanged(const TQString &)));
KommanderPlugin::setDefaultGroup(Group::DCOP);
KommanderPlugin::registerFunction(LE_clearModified, "clearModified(TQString widget)", i18n("Clear widget modified status."), 1);