summaryrefslogtreecommitdiffstats
path: root/noatun-plugins/nexscope/nex.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'noatun-plugins/nexscope/nex.cpp')
-rw-r--r--noatun-plugins/nexscope/nex.cpp8
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());
}