diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-07 19:46:08 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-09 10:35:19 +0900 |
commit | 3a03ef43d4ad32c63e6455354b4d2f6f70a98079 (patch) | |
tree | 0c04ee9a295c95ebaf871fe5600e42e277ea9548 /src/resultlistview.cpp | |
parent | 7367cf3ea6f1e0e414f80b309aa2c6b00260dcfb (diff) | |
download | abakus-3a03ef43d4ad32c63e6455354b4d2f6f70a98079.tar.gz abakus-3a03ef43d4ad32c63e6455354b4d2f6f70a98079.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit fb3d13c23bf3cc67b910174f9966581b80638f02)
Diffstat (limited to 'src/resultlistview.cpp')
-rw-r--r-- | src/resultlistview.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/resultlistview.cpp b/src/resultlistview.cpp index 86db28f..1d78b10 100644 --- a/src/resultlistview.cpp +++ b/src/resultlistview.cpp @@ -37,8 +37,8 @@ using namespace ResultList; ResultListView::ResultListView(TQWidget *parent, const char *name) : TDEListView(parent, name), m_itemRightClicked(0) { - connect(this, TQT_SIGNAL(doubleClicked(TQListViewItem *, const TQPoint &, int)), - TQT_SLOT(slotDoubleClicked(TQListViewItem *, const TQPoint &, int))); + connect(this, TQ_SIGNAL(doubleClicked(TQListViewItem *, const TQPoint &, int)), + TQ_SLOT(slotDoubleClicked(TQListViewItem *, const TQPoint &, int))); addColumn(i18n("Expression")); addColumn(i18n("Result")); @@ -115,9 +115,9 @@ TDEPopupMenu *ResultListView::constructPopupMenu(const ResultListViewText *item) { TDEPopupMenu *menu = new TDEPopupMenu(this, "list view context menu"); - menu->insertItem(i18n("Clear &History"), this, TQT_SLOT(clear()), ALT+Key_R); + menu->insertItem(i18n("Clear &History"), this, TQ_SLOT(clear()), ALT+Key_R); - int id = menu->insertItem(i18n("Copy Result to Clipboard"), this, TQT_SLOT(slotCopyResult())); + int id = menu->insertItem(i18n("Copy Result to Clipboard"), this, TQ_SLOT(slotCopyResult())); if(!item || item->wasError()) menu->setItemEnabled(id, false); |