summaryrefslogtreecommitdiffstats
path: root/noatun-plugins/oblique/tree.cpp
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2024-01-11 10:35:25 +0900
committerMichele Calgaro <[email protected]>2024-01-13 20:23:16 +0900
commite234565531cd8c11949cc6aecf16179e75312458 (patch)
tree90b0cb6c9f6c2a04712bbfb73b531275d4f63976 /noatun-plugins/oblique/tree.cpp
parentbe3456c5d953fb877340a51b2ef699be6b3c7c02 (diff)
downloadtdeaddons-e234565531cd8c11949cc6aecf16179e75312458.tar.gz
tdeaddons-e234565531cd8c11949cc6aecf16179e75312458.zip
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]> (cherry picked from commit 7e9d8ea45280ad6657796da9536ccf6218111f22)
Diffstat (limited to 'noatun-plugins/oblique/tree.cpp')
-rw-r--r--noatun-plugins/oblique/tree.cpp26
1 files changed, 13 insertions, 13 deletions
diff --git a/noatun-plugins/oblique/tree.cpp b/noatun-plugins/oblique/tree.cpp
index f86f624..af8feec 100644
--- a/noatun-plugins/oblique/tree.cpp
+++ b/noatun-plugins/oblique/tree.cpp
@@ -453,28 +453,28 @@ Tree::Tree(Oblique *oblique, TQWidget *parent)
connect(
- this, TQT_SIGNAL(moved(TQPtrList<TQListViewItem>&, TQPtrList<TQListViewItem>&, TQPtrList<TQListViewItem>&)),
- TQT_SLOT(dropped(TQPtrList<TQListViewItem>&, TQPtrList<TQListViewItem>&, TQPtrList<TQListViewItem>&))
+ this, TQ_SIGNAL(moved(TQPtrList<TQListViewItem>&, TQPtrList<TQListViewItem>&, TQPtrList<TQListViewItem>&)),
+ TQ_SLOT(dropped(TQPtrList<TQListViewItem>&, TQPtrList<TQListViewItem>&, TQPtrList<TQListViewItem>&))
);
connect(
- this, TQT_SIGNAL(contextMenu(TDEListView*, TQListViewItem*, const TQPoint&)),
- TQT_SLOT(contextMenu(TDEListView*, TQListViewItem*, const TQPoint&))
+ this, TQ_SIGNAL(contextMenu(TDEListView*, TQListViewItem*, const TQPoint&)),
+ TQ_SLOT(contextMenu(TDEListView*, TQListViewItem*, const TQPoint&))
);
connect(
- this, TQT_SIGNAL(executed(TQListViewItem*)),
- TQT_SLOT(play(TQListViewItem*))
+ this, TQ_SIGNAL(executed(TQListViewItem*)),
+ TQ_SLOT(play(TQListViewItem*))
);
Base *base = oblique->base();
- connect(base, TQT_SIGNAL(added(File)), TQT_SLOT(insert(File)));
- connect(base, TQT_SIGNAL(removed(File)), TQT_SLOT(remove(File)));
- connect(base, TQT_SIGNAL(modified(File)), TQT_SLOT(update(File)));
+ connect(base, TQ_SIGNAL(added(File)), TQ_SLOT(insert(File)));
+ connect(base, TQ_SIGNAL(removed(File)), TQ_SLOT(remove(File)));
+ connect(base, TQ_SIGNAL(modified(File)), TQ_SLOT(update(File)));
- connect(base, TQT_SIGNAL(addedTo(Slice*, File)), TQT_SLOT(checkInsert(Slice*, File)));
- connect(base, TQT_SIGNAL(removedFrom(Slice*, File)), TQT_SLOT(checkRemove(Slice*, File)));
+ connect(base, TQ_SIGNAL(addedTo(Slice*, File)), TQ_SLOT(checkInsert(Slice*, File)));
+ connect(base, TQ_SIGNAL(removedFrom(Slice*, File)), TQ_SLOT(checkRemove(Slice*, File)));
- connect(this, TQT_SIGNAL(selected(TreeItem*)), oblique, TQT_SLOT(selected(TreeItem*)));
+ connect(this, TQ_SIGNAL(selected(TreeItem*)), oblique, TQ_SLOT(selected(TreeItem*)));
mSlice = oblique->base()->defaultSlice();
@@ -660,7 +660,7 @@ void Tree::reload()
delete mLoader;
clear();
mLoader = new Loader(this);
- connect(mLoader, TQT_SIGNAL(finished()), TQT_SLOT(destroyLoader()));
+ connect(mLoader, TQ_SIGNAL(finished()), TQ_SLOT(destroyLoader()));
}
void Tree::setSlice(Slice *slice)