diff options
author | Michele Calgaro <[email protected]> | 2023-11-06 11:29:10 +0900 |
---|---|---|
committer | Michele Calgaro <[email protected]> | 2023-11-07 10:53:46 +0900 |
commit | f37c5af508b00cb3984ffbbd276387ac8f9a38ee (patch) | |
tree | 30dcbce15fc419eaaed73f0a3cdb043e5b2eeb0b /noatun-plugins/nexscope | |
parent | 7683c5ed7cada26ddf6254e64da3afb74ced25c0 (diff) | |
download | tdeaddons-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.cpp | 2 | ||||
-rw-r--r-- | noatun-plugins/nexscope/renderers.h | 2 |
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 |