summaryrefslogtreecommitdiffstats
path: root/noatun-plugins/nexscope
diff options
context:
space:
mode:
authorMichele Calgaro <[email protected]>2023-11-06 11:29:10 +0900
committerMichele Calgaro <[email protected]>2023-11-07 10:53:46 +0900
commitf37c5af508b00cb3984ffbbd276387ac8f9a38ee (patch)
tree30dcbce15fc419eaaed73f0a3cdb043e5b2eeb0b /noatun-plugins/nexscope
parent7683c5ed7cada26ddf6254e64da3afb74ced25c0 (diff)
downloadtdeaddons-f37c5af508b00cb3984ffbbd276387ac8f9a38ee.tar.gz
tdeaddons-f37c5af508b00cb3984ffbbd276387ac8f9a38ee.zip
Replace Qt with TQt
Signed-off-by: Michele Calgaro <[email protected]> (cherry picked from commit 96f327c14acd697b936e88289165e0edb57d7fb6)
Diffstat (limited to 'noatun-plugins/nexscope')
-rw-r--r--noatun-plugins/nexscope/gui.cpp2
-rw-r--r--noatun-plugins/nexscope/renderers.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/noatun-plugins/nexscope/gui.cpp b/noatun-plugins/nexscope/gui.cpp
index c1b6756..ca371a6 100644
--- a/noatun-plugins/nexscope/gui.cpp
+++ b/noatun-plugins/nexscope/gui.cpp
@@ -81,7 +81,7 @@ Control::Control() : mConfigurator(0)
setCaption(i18n("Nex Configuration"));
TQSplitter *mainSplitter=new TQSplitter(this);
setCentralWidget(mainSplitter);
- TQSplitter *left=new TQSplitter(Qt::Vertical, mainSplitter);
+ TQSplitter *left=new TQSplitter(TQt::Vertical, mainSplitter);
{
mTree=new RendererListView(left);
mTree->setItemsMovable(true);
diff --git a/noatun-plugins/nexscope/renderers.h b/noatun-plugins/nexscope/renderers.h
index e23304a..2c8e726 100644
--- a/noatun-plugins/nexscope/renderers.h
+++ b/noatun-plugins/nexscope/renderers.h
@@ -23,7 +23,7 @@ Renderer *function();
REGISTER(fade, Fade)
REGISTER(doubler, Doubler)
-REGISTER(waveform,Qt::HorizontalPair);
+REGISTER(waveform,TQt::HorizontalPair);
REGISTER(hartley, Hartley);
#undef REGISTER