summaryrefslogtreecommitdiffstats
path: root/src/entryeditdialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/entryeditdialog.cpp')
-rw-r--r--src/entryeditdialog.cpp14
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;