diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-04 10:31:17 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-04 10:31:17 +0900 |
commit | c650254e1855d383dcafd15d18be20becc3b2253 (patch) | |
tree | 9c221c2e920b1f8e9098c6047d948833277659de /src/entryeditdialog.cpp | |
parent | 3d581777cdf9c0ff8dc7e757a2cd576f69e96b51 (diff) | |
download | tellico-c650254e1855d383dcafd15d18be20becc3b2253.tar.gz tellico-c650254e1855d383dcafd15d18be20becc3b2253.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'src/entryeditdialog.cpp')
-rw-r--r-- | src/entryeditdialog.cpp | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/entryeditdialog.cpp b/src/entryeditdialog.cpp index 3cb94d0..2aa077e 100644 --- a/src/entryeditdialog.cpp +++ b/src/entryeditdialog.cpp @@ -67,10 +67,10 @@ EntryEditDialog::EntryEditDialog(TQWidget* parent_, const char* name_) setButtonGuiItem(m_saveBtn, save); enableButton(m_saveBtn, false); - connect(this, TQT_SIGNAL(applyClicked()), TQT_SLOT(slotHandleSave())); - connect(this, TQT_SIGNAL(user1Clicked()), TQT_SLOT(slotHandleNew())); - connect(this, TQT_SIGNAL(user2Clicked()), TQT_SLOT(slotGoNextEntry())); - connect(this, TQT_SIGNAL(user3Clicked()), TQT_SLOT(slotGoPrevEntry())); + connect(this, TQ_SIGNAL(applyClicked()), TQ_SLOT(slotHandleSave())); + connect(this, TQ_SIGNAL(user1Clicked()), TQ_SLOT(slotHandleNew())); + connect(this, TQ_SIGNAL(user2Clicked()), TQ_SLOT(slotGoNextEntry())); + connect(this, TQ_SIGNAL(user3Clicked()), TQ_SLOT(slotGoPrevEntry())); KGuiItem prev; prev.setIconName(TQString::fromLatin1(TQApplication::reverseLayout() ? "forward" : "back")); @@ -87,9 +87,9 @@ EntryEditDialog::EntryEditDialog(TQWidget* parent_, const char* name_) TDEAccel* accel = new TDEAccel(this); accel->insert(TQString::fromLatin1("Go Prev"), TQString(), prev.toolTip(), TQt::Key_PageUp, - Controller::self(), TQT_SLOT(slotGoPrevEntry())); + Controller::self(), TQ_SLOT(slotGoPrevEntry())); accel->insert(TQString::fromLatin1("Go Next"), TQString(), next.toolTip(), TQt::Key_PageDown, - Controller::self(), TQT_SLOT(slotGoNextEntry())); + Controller::self(), TQ_SLOT(slotGoNextEntry())); setHelp(TQString::fromLatin1("entry-editor")); @@ -194,7 +194,7 @@ void EntryEditDialog::setLayout(Data::CollPtr coll_) { if(!widget) { continue; } - connect(widget, TQT_SIGNAL(modified()), TQT_SLOT(slotSetModified())); + connect(widget, TQ_SIGNAL(modified()), TQ_SLOT(slotSetModified())); if(!focusedFirst && widget->isFocusEnabled()) { widget->setFocus(); focusedFirst = true; |