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