summaryrefslogtreecommitdiffstats
path: root/src/resultlistview.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2024-01-07 19:46:08 +0900
committerMichele Calgaro <[email protected]>2024-01-07 19:46:08 +0900
commitfb3d13c23bf3cc67b910174f9966581b80638f02 (patch)
tree0c04ee9a295c95ebaf871fe5600e42e277ea9548 /src/resultlistview.cpp
parentd343e30ff1ad7373c9467834485469ca990fe67d (diff)
downloadabakus-fb3d13c23bf3cc67b910174f9966581b80638f02.tar.gz
abakus-fb3d13c23bf3cc67b910174f9966581b80638f02.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'src/resultlistview.cpp')
-rw-r--r--src/resultlistview.cpp8
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);