summaryrefslogtreecommitdiffstats
path: root/lib/widgets/propeditor/psymbolcombo.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'lib/widgets/propeditor/psymbolcombo.cpp')
-rw-r--r--lib/widgets/propeditor/psymbolcombo.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/widgets/propeditor/psymbolcombo.cpp b/lib/widgets/propeditor/psymbolcombo.cpp
index ee91ea48..7b7afec1 100644
--- a/lib/widgets/propeditor/psymbolcombo.cpp
+++ b/lib/widgets/propeditor/psymbolcombo.cpp
@@ -51,8 +51,8 @@ PSymbolCombo::PSymbolCombo(MultiProperty *property, TQWidget *parent, const char
m_select->hide();
#endif
- connect(m_select, TQT_SIGNAL(clicked()), this, TQT_SLOT(selectChar()));
- connect(m_edit, TQT_SIGNAL(textChanged(const TQString&)), this, TQT_SLOT(updateProperty(const TQString&)));
+ connect(m_select, TQ_SIGNAL(clicked()), this, TQ_SLOT(selectChar()));
+ connect(m_edit, TQ_SIGNAL(textChanged(const TQString&)), this, TQ_SLOT(updateProperty(const TQString&)));
}
TQVariant PSymbolCombo::value() const
@@ -67,9 +67,9 @@ void PSymbolCombo::setValue(const TQVariant &value, bool emitChange)
{
if (!(value.isNull()))
{
- disconnect(m_edit, TQT_SIGNAL(textChanged(const TQString&)), this, TQT_SLOT(updateProperty(const TQString&)));
+ disconnect(m_edit, TQ_SIGNAL(textChanged(const TQString&)), this, TQ_SLOT(updateProperty(const TQString&)));
m_edit->setText(TQChar(value.toInt()));
- connect(m_edit, TQT_SIGNAL(textChanged(const TQString&)), this, TQT_SLOT(updateProperty(const TQString&)));
+ connect(m_edit, TQ_SIGNAL(textChanged(const TQString&)), this, TQ_SLOT(updateProperty(const TQString&)));
if (emitChange)
emit propertyChanged(m_property, value);
}
@@ -89,8 +89,8 @@ void PSymbolCombo::selectChar()
KPushButton *pbCancel = new KPushButton(KStdGuiItem::cancel(), dia);
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);