diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-11 10:35:25 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2024-01-13 20:23:16 +0900 |
commit | e234565531cd8c11949cc6aecf16179e75312458 (patch) | |
tree | 90b0cb6c9f6c2a04712bbfb73b531275d4f63976 /noatun-plugins/nexscope | |
parent | be3456c5d953fb877340a51b2ef699be6b3c7c02 (diff) | |
download | tdeaddons-e234565531cd8c11949cc6aecf16179e75312458.tar.gz tdeaddons-e234565531cd8c11949cc6aecf16179e75312458.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
(cherry picked from commit 7e9d8ea45280ad6657796da9536ccf6218111f22)
Diffstat (limited to 'noatun-plugins/nexscope')
-rw-r--r-- | noatun-plugins/nexscope/gui.cpp | 14 | ||||
-rw-r--r-- | noatun-plugins/nexscope/nex.cpp | 8 | ||||
-rw-r--r-- | noatun-plugins/nexscope/noatunplugin.cpp | 2 |
3 files changed, 12 insertions, 12 deletions
diff --git a/noatun-plugins/nexscope/gui.cpp b/noatun-plugins/nexscope/gui.cpp index ca371a6..b71cf03 100644 --- a/noatun-plugins/nexscope/gui.cpp +++ b/noatun-plugins/nexscope/gui.cpp @@ -72,9 +72,9 @@ Control::Control() : mConfigurator(0) { { TDEToolBar *tools=toolBar(); - KStdAction::save(this, TQT_SLOT(save()), actionCollection())->plug(tools); - KStdAction::saveAs(this, TQT_SLOT(saveAs()), actionCollection())->plug(tools); - KStdAction::open(this, TQT_SLOT(open()), actionCollection())->plug(tools); + KStdAction::save(this, TQ_SLOT(save()), actionCollection())->plug(tools); + KStdAction::saveAs(this, TQ_SLOT(saveAs()), actionCollection())->plug(tools); + KStdAction::open(this, TQ_SLOT(open()), actionCollection())->plug(tools); } @@ -88,11 +88,11 @@ Control::Control() : mConfigurator(0) mTree->setSorting(-1); mTree->setRootIsDecorated(true); - connect(mTree, TQT_SIGNAL(dropped(TQDropEvent*, TQListViewItem*, TQListViewItem*)), - TQT_SLOT(dropEvent(TQDropEvent*, TQListViewItem*, TQListViewItem*))); + connect(mTree, TQ_SIGNAL(dropped(TQDropEvent*, TQListViewItem*, TQListViewItem*)), + TQ_SLOT(dropEvent(TQDropEvent*, TQListViewItem*, TQListViewItem*))); - connect(mTree, TQT_SIGNAL(currentChanged(TQListViewItem*)), - TQT_SLOT(currentChanged(TQListViewItem*))); + connect(mTree, TQ_SIGNAL(currentChanged(TQListViewItem*)), + TQ_SLOT(currentChanged(TQListViewItem*))); mCreatorsList=new RendererListView(left); mCreatorsList->addColumn(i18n("Name")); diff --git a/noatun-plugins/nexscope/nex.cpp b/noatun-plugins/nexscope/nex.cpp index b8ba470..87f4cc9 100644 --- a/noatun-plugins/nexscope/nex.cpp +++ b/noatun-plugins/nexscope/nex.cpp @@ -62,7 +62,7 @@ NexCheckBox::NexCheckBox(TQWidget *parent, { value=v; setChecked(*v); - connect(this, TQT_SIGNAL(toggled(bool)), TQT_SLOT(change(bool))); + connect(this, TQ_SIGNAL(toggled(bool)), TQ_SLOT(change(bool))); } void NexCheckBox::change(bool b) { @@ -77,7 +77,7 @@ NexColorButton::NexColorButton(TQWidget *parent, Pixel *color) c=color; TQColor temp( (*c >> 16) & 0xFF, (*c >> 8) & 0xFF, *c & 0xFF); setColor(temp); - connect(this, TQT_SIGNAL(changed(const TQColor&)), TQT_SLOT(change(const TQColor&))); + connect(this, TQ_SIGNAL(changed(const TQColor&)), TQ_SLOT(change(const TQColor&))); } void NexColorButton::change(const TQColor &co) @@ -411,13 +411,13 @@ RendererListConfigurator::RendererListConfigurator(RendererList *l, TQWidget *pa { (new TQVBoxLayout(this))->setAutoAdd(true); mErase=new TQCheckBox(i18n("&Erase between frames"), this); - connect(mErase, TQT_SIGNAL(toggled(bool)), TQT_SLOT(eraseOn(bool))); + connect(mErase, TQ_SIGNAL(toggled(bool)), TQ_SLOT(eraseOn(bool))); mErase->setChecked(mList->mClearAfter); if (nex->rendererList()==l) { TQCheckBox *mConvolve=new TQCheckBox(i18n("&Convolve audio"), this); - connect(mConvolve, TQT_SIGNAL(toggled(bool)), TQT_SLOT(convolve(bool))); + connect(mConvolve, TQ_SIGNAL(toggled(bool)), TQ_SLOT(convolve(bool))); mConvolve->setChecked(nex->input()->convolve()); } diff --git a/noatun-plugins/nexscope/noatunplugin.cpp b/noatun-plugins/nexscope/noatunplugin.cpp index cb5f9c6..fe4d569 100644 --- a/noatun-plugins/nexscope/noatunplugin.cpp +++ b/noatun-plugins/nexscope/noatunplugin.cpp @@ -18,7 +18,7 @@ extern "C" NexPlugin::NexPlugin() { - connect(&process, TQT_SIGNAL(processExited(TDEProcess *)), this, TQT_SLOT(processExited(TDEProcess *))); + connect(&process, TQ_SIGNAL(processExited(TDEProcess *)), this, TQ_SLOT(processExited(TDEProcess *))); } NexPlugin::~NexPlugin() |