summaryrefslogtreecommitdiffstats
path: root/lib/widgets/propeditor/pstringlistedit.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-14 14:24:33 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-14 14:24:33 +0900
commit35fbd60457d1e51e6a0df5d181d1a0f00ad75a2c (patch)
treebb3c7d39dd8592f3676cbd663a3cc42c7b288b41 /lib/widgets/propeditor/pstringlistedit.cpp
parent59f10590f7686267df6e294111a2ff5661089026 (diff)
downloadtdevelop-35fbd60457d1e51e6a0df5d181d1a0f00ad75a2c.tar.gz
tdevelop-35fbd60457d1e51e6a0df5d181d1a0f00ad75a2c.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'lib/widgets/propeditor/pstringlistedit.cpp')
-rw-r--r--lib/widgets/propeditor/pstringlistedit.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/widgets/propeditor/pstringlistedit.cpp b/lib/widgets/propeditor/pstringlistedit.cpp
index b6f4b74e..9f2e1364 100644
--- a/lib/widgets/propeditor/pstringlistedit.cpp
+++ b/lib/widgets/propeditor/pstringlistedit.cpp
@@ -49,7 +49,7 @@ PStringListEdit::PStringListEdit(MultiProperty *property, TQWidget *parent, cons
pbSelect->setSizePolicy(TQSizePolicy::Maximum, TQSizePolicy::MinimumExpanding);
l->addWidget(pbSelect);
- connect(pbSelect, TQT_SIGNAL(clicked()), this, TQT_SLOT(showEditor()));
+ connect(pbSelect, TQ_SIGNAL(clicked()), this, TQ_SLOT(showEditor()));
}
TQVariant PStringListEdit::value() const
@@ -87,8 +87,8 @@ void PStringListEdit::showEditor()
#endif
TQSpacerItem *si = new TQSpacerItem(30, 0, TQSizePolicy::Expanding, TQSizePolicy::Expanding);
- connect(pbOk, TQT_SIGNAL(clicked()), dia, TQT_SLOT(accept()));
- connect(pbCancel, TQT_SIGNAL(clicked()), dia, TQT_SLOT(reject()));
+ connect(pbOk, TQ_SIGNAL(clicked()), dia, TQ_SLOT(accept()));
+ connect(pbCancel, TQ_SIGNAL(clicked()), dia, TQ_SLOT(reject()));
dh->addItem(si);
dh->addWidget(pbOk);