diff options
author | Michele Calgaro <[email protected]> | 2024-01-04 10:30:32 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-01-04 12:36:03 +0900 |
commit | c0332621bc998c9786f4841e86a62b7711fe4abf (patch) | |
tree | 38b3ab6688de7a9396a1c5993a8ec265f5f33b64 /lib/kofficeui/KoTemplateCreateDia.cpp | |
parent | 6c81ff8d61ec679e735d3fbd875583b12f0ef0a5 (diff) | |
download | koffice-c0332621bc998c9786f4841e86a62b7711fe4abf.tar.gz koffice-c0332621bc998c9786f4841e86a62b7711fe4abf.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'lib/kofficeui/KoTemplateCreateDia.cpp')
-rw-r--r-- | lib/kofficeui/KoTemplateCreateDia.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/lib/kofficeui/KoTemplateCreateDia.cpp b/lib/kofficeui/KoTemplateCreateDia.cpp index cb418650..ae827d75 100644 --- a/lib/kofficeui/KoTemplateCreateDia.cpp +++ b/lib/kofficeui/KoTemplateCreateDia.cpp @@ -114,8 +114,8 @@ KoTemplateCreateDia::KoTemplateCreateDia( const TQCString &templateType, TDEInst namefield->addWidget(label); d->m_name=new KLineEdit(mainwidget); d->m_name->setFocus(); - connect(d->m_name, TQT_SIGNAL(textChanged(const TQString &)), - this, TQT_SLOT(slotNameChanged(const TQString &))); + connect(d->m_name, TQ_SIGNAL(textChanged(const TQString &)), + this, TQ_SLOT(slotNameChanged(const TQString &))); namefield->addWidget(d->m_name); label=new TQLabel(i18n("Group:"), mainwidget); @@ -133,10 +133,10 @@ KoTemplateCreateDia::KoTemplateCreateDia( const TQCString &templateType, TDEInst TQHBoxLayout *bbox=new TQHBoxLayout(leftbox); d->m_add=new TQPushButton(i18n("&Add Group..."), mainwidget); - connect(d->m_add, TQT_SIGNAL(clicked()), this, TQT_SLOT(slotAddGroup())); + connect(d->m_add, TQ_SIGNAL(clicked()), this, TQ_SLOT(slotAddGroup())); bbox->addWidget(d->m_add); d->m_remove=new TQPushButton(i18n("&Remove"), mainwidget); - connect(d->m_remove, TQT_SIGNAL(clicked()), this, TQT_SLOT(slotRemove())); + connect(d->m_remove, TQ_SIGNAL(clicked()), this, TQ_SLOT(slotRemove())); bbox->addWidget(d->m_remove); TQVBoxLayout *rightbox=new TQVBoxLayout(mbox); @@ -148,15 +148,15 @@ KoTemplateCreateDia::KoTemplateCreateDia( const TQCString &templateType, TDEInst pixlayout->addStretch(1); d->m_default=new TQRadioButton(i18n("&Default"), pixbox); d->m_default->setChecked(true); - connect(d->m_default, TQT_SIGNAL(clicked()), this, TQT_SLOT(slotDefault())); + connect(d->m_default, TQ_SIGNAL(clicked()), this, TQ_SLOT(slotDefault())); pixlayout->addWidget(d->m_default); TQHBoxLayout *custombox=new TQHBoxLayout(pixlayout); d->m_custom=new TQRadioButton(i18n("Custom"), pixbox); d->m_custom->setChecked(false); - connect(d->m_custom, TQT_SIGNAL(clicked()), this, TQT_SLOT(slotCustom())); + connect(d->m_custom, TQ_SIGNAL(clicked()), this, TQ_SLOT(slotCustom())); custombox->addWidget(d->m_custom); d->m_select=new TQPushButton(i18n("&Select..."), pixbox); - connect(d->m_select, TQT_SIGNAL(clicked()), this, TQT_SLOT(slotSelect())); + connect(d->m_select, TQ_SIGNAL(clicked()), this, TQ_SLOT(slotSelect())); custombox->addWidget(d->m_select, 1); custombox->addStretch(1); pixlayout->addStretch(1); @@ -178,7 +178,7 @@ KoTemplateCreateDia::KoTemplateCreateDia( const TQCString &templateType, TDEInst d->m_changed=false; updatePixmap(); - connect(d->m_groups,TQT_SIGNAL( selectionChanged()),this,TQT_SLOT(slotSelectionChanged())); + connect(d->m_groups,TQ_SIGNAL( selectionChanged()),this,TQ_SLOT(slotSelectionChanged())); d->m_remove->setEnabled(d->m_groups->currentItem()); } |