diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-11 10:40:32 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-12 18:41:24 +0900 |
commit | 7ad2f154f24ac01a33118779950bcdfe0d16ca94 (patch) | |
tree | b9925df5e2fc01026c3ef866224704086ab32da5 /kcron/ktview.cpp | |
parent | 6360698f4f1660c36e1874dc496fb057f28e7b86 (diff) | |
download | tdeadmin-7ad2f154f24ac01a33118779950bcdfe0d16ca94.tar.gz tdeadmin-7ad2f154f24ac01a33118779950bcdfe0d16ca94.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit ed7858de3a395180d6ec0c03d8358610b36938ea)
Diffstat (limited to 'kcron/ktview.cpp')
-rw-r--r-- | kcron/ktview.cpp | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/kcron/ktview.cpp b/kcron/ktview.cpp index beab6a1..b9c3869 100644 --- a/kcron/ktview.cpp +++ b/kcron/ktview.cpp @@ -62,17 +62,17 @@ KTView::KTView(TQWidget *parent, const char* name) : refresh(); listView->setSelected(listView->firstChild(), true); - connect(this, TQT_SIGNAL(enableModificationButtons(bool)), parent, - TQT_SLOT(slotEnableModificationButtons(bool))); + connect(this, TQ_SIGNAL(enableModificationButtons(bool)), parent, + TQ_SLOT(slotEnableModificationButtons(bool))); - connect(this, TQT_SIGNAL(enablePaste(bool)), parent, - TQT_SLOT(slotEnablePaste(bool))); + connect(this, TQ_SIGNAL(enablePaste(bool)), parent, + TQ_SLOT(slotEnablePaste(bool))); - connect(this, TQT_SIGNAL(enableRunNow(bool)), parent, - TQT_SLOT(slotEnableRunNow(bool))); + connect(this, TQ_SIGNAL(enableRunNow(bool)), parent, + TQ_SLOT(slotEnableRunNow(bool))); - connect(this, TQT_SIGNAL(enableEnabled(bool)), parent, - TQT_SLOT(slotEnableEnabled(bool))); + connect(this, TQ_SIGNAL(enableEnabled(bool)), parent, + TQ_SLOT(slotEnableEnabled(bool))); } void KTView::disableIcons() @@ -158,17 +158,17 @@ void KTView::refresh() resizeEvent(); - connect(listView, TQT_SIGNAL(contextMenuRequested(TQListViewItem*, const TQPoint&, int)), - TQT_SLOT(slotMenu(TQListViewItem*, const TQPoint&, int))); + connect(listView, TQ_SIGNAL(contextMenuRequested(TQListViewItem*, const TQPoint&, int)), + TQ_SLOT(slotMenu(TQListViewItem*, const TQPoint&, int))); - connect(listView, TQT_SIGNAL(selectionChanged(TQListViewItem*)), - TQT_SLOT(slotSetCurrent(TQListViewItem*))); + connect(listView, TQ_SIGNAL(selectionChanged(TQListViewItem*)), + TQ_SLOT(slotSetCurrent(TQListViewItem*))); - connect(listView, TQT_SIGNAL(doubleClicked(TQListViewItem*)), - TQT_SLOT(slotEdit(TQListViewItem*))); + connect(listView, TQ_SIGNAL(doubleClicked(TQListViewItem*)), + TQ_SLOT(slotEdit(TQListViewItem*))); - connect(listView, TQT_SIGNAL(returnPressed(TQListViewItem*)), - TQT_SLOT(slotEdit(TQListViewItem*))); + connect(listView, TQ_SIGNAL(returnPressed(TQListViewItem*)), + TQ_SLOT(slotEdit(TQListViewItem*))); // switch to the new view if (tmpListView) |