diff options
author | Michele Calgaro <[email protected]> | 2024-01-11 10:35:25 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2024-01-11 10:35:25 +0900 |
commit | 7e9d8ea45280ad6657796da9536ccf6218111f22 (patch) | |
tree | 67d57c480b89c5967466e39bf60f7e4f05434f15 /noatun-plugins/nexscope/nex.cpp | |
parent | 1ecb90ecaf66e1cc8ddeacad21e71640477d9767 (diff) | |
download | tdeaddons-7e9d8ea45280ad6657796da9536ccf6218111f22.tar.gz tdeaddons-7e9d8ea45280ad6657796da9536ccf6218111f22.zip |
Use new TQ_METHOD, TQ_SIGNAL, TQ_SLOT defines
Signed-off-by: Michele Calgaro <[email protected]>
Diffstat (limited to 'noatun-plugins/nexscope/nex.cpp')
-rw-r--r-- | noatun-plugins/nexscope/nex.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
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()); } |