summaryrefslogtreecommitdiffstats
path: root/src/filterview.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2024-01-04 10:31:17 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2024-01-07 14:53:04 +0900
commitaa5bb4434eb6b60314787106284ad99294de4468 (patch)
tree3a766a6cc84578b8fa8f5a6db323de24c57959d8 /src/filterview.cpp
parent727a2e58bc79c09f53766110fb7c31d3f3af1e46 (diff)
downloadtellico-aa5bb4434eb6b60314787106284ad99294de4468.tar.gz
tellico-aa5bb4434eb6b60314787106284ad99294de4468.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit c650254e1855d383dcafd15d18be20becc3b2253)
Diffstat (limited to 'src/filterview.cpp')
-rw-r--r--src/filterview.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/filterview.cpp b/src/filterview.cpp
index 2e724e4..fc12c68 100644
--- a/src/filterview.cpp
+++ b/src/filterview.cpp
@@ -38,8 +38,8 @@ FilterView::FilterView(TQWidget* parent_, const char* name_) : GUI::ListView(par
setTreeStepSize(15);
setFullWidth(true);
- connect(this, TQT_SIGNAL(contextMenuRequested(TQListViewItem*, const TQPoint&, int)),
- TQT_SLOT(contextMenuRequested(TQListViewItem*, const TQPoint&, int)));
+ connect(this, TQ_SIGNAL(contextMenuRequested(TQListViewItem*, const TQPoint&, int)),
+ TQ_SLOT(contextMenuRequested(TQListViewItem*, const TQPoint&, int)));
}
bool FilterView::isSelectable(GUI::ListViewItem* item_) const {
@@ -65,9 +65,9 @@ void FilterView::contextMenuRequested(TQListViewItem* item_, const TQPoint& poin
if(item->isFilterItem()) {
TDEPopupMenu menu(this);
menu.insertItem(SmallIconSet(TQString::fromLatin1("filter")),
- i18n("Modify Filter"), this, TQT_SLOT(slotModifyFilter()));
+ i18n("Modify Filter"), this, TQ_SLOT(slotModifyFilter()));
menu.insertItem(SmallIconSet(TQString::fromLatin1("edit-delete")),
- i18n("Delete Filter"), this, TQT_SLOT(slotDeleteFilter()));
+ i18n("Delete Filter"), this, TQ_SLOT(slotDeleteFilter()));
menu.exec(point_);
}
}