diff options
author | Michele Calgaro <[email protected]> | 2024-01-04 10:30:32 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-01-13 20:22:52 +0900 |
commit | e1b37ac1936f81994a2c1aa2778298fbc757531f (patch) | |
tree | 2e2df5ea5786d581b10e51e0cbde9f4921697b2f /kexi/plugins/macros/kexipart/keximacroproperty.cpp | |
parent | d08f80f854355e446d1c6be0eb50166646f7f291 (diff) | |
download | koffice-e1b37ac1936f81994a2c1aa2778298fbc757531f.tar.gz koffice-e1b37ac1936f81994a2c1aa2778298fbc757531f.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
(cherry picked from commit c0332621bc998c9786f4841e86a62b7711fe4abf)
Diffstat (limited to 'kexi/plugins/macros/kexipart/keximacroproperty.cpp')
-rw-r--r-- | kexi/plugins/macros/kexipart/keximacroproperty.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/kexi/plugins/macros/kexipart/keximacroproperty.cpp b/kexi/plugins/macros/kexipart/keximacroproperty.cpp index 3bb5629d..45d21b10 100644 --- a/kexi/plugins/macros/kexipart/keximacroproperty.cpp +++ b/kexi/plugins/macros/kexipart/keximacroproperty.cpp @@ -543,14 +543,14 @@ KexiMacroPropertyWidget::KexiMacroPropertyWidget(KoProperty::Property* property, d->combobox->setFocusProxy( d->listbox->editItem()->widget() ); setFocusWidget( d->combobox->lineEdit() ); - connect(d->combobox, TQT_SIGNAL(textChanged(const TQString&)), - this, TQT_SLOT(slotComboBoxChanged())); - connect(d->combobox, TQT_SIGNAL(activated(int)), - this, TQT_SLOT(slotComboBoxActivated())); - connect(d->listbox->editItem()->widget(), TQT_SIGNAL(valueChanged(Widget*)), - this, TQT_SLOT(slotWidgetValueChanged())); - connect(d->macroproperty, TQT_SIGNAL(valueChanged()), - this, TQT_SLOT(slotPropertyValueChanged())); + connect(d->combobox, TQ_SIGNAL(textChanged(const TQString&)), + this, TQ_SLOT(slotComboBoxChanged())); + connect(d->combobox, TQ_SIGNAL(activated(int)), + this, TQ_SLOT(slotComboBoxActivated())); + connect(d->listbox->editItem()->widget(), TQ_SIGNAL(valueChanged(Widget*)), + this, TQ_SLOT(slotWidgetValueChanged())); + connect(d->macroproperty, TQ_SIGNAL(valueChanged()), + this, TQ_SLOT(slotPropertyValueChanged())); } KexiMacroPropertyWidget::~KexiMacroPropertyWidget() |