summaryrefslogtreecommitdiffstats
path: root/noatun-plugins
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-11-06 11:29:10 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-11-07 10:49:54 +0900
commit96f327c14acd697b936e88289165e0edb57d7fb6 (patch)
treefdf24ccd79bca9a6085d35a670c7299cb2a27fe3 /noatun-plugins
parentd48a4e1b0d41fa262f29142736d11ce22cffa657 (diff)
downloadtdeaddons-96f327c14acd697b936e88289165e0edb57d7fb6.tar.gz
tdeaddons-96f327c14acd697b936e88289165e0edb57d7fb6.zip
Replace Qt with TQt
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'noatun-plugins')
-rw-r--r--noatun-plugins/alarm/wakeup.cpp2
-rw-r--r--noatun-plugins/alsaplayer/seeker.cpp2
-rw-r--r--noatun-plugins/alsaplayer/userinterface.cpp2
-rw-r--r--noatun-plugins/charlatan/seeker.cpp2
-rw-r--r--noatun-plugins/charlatan/userinterface.cpp2
-rw-r--r--noatun-plugins/lyrics/cmodule.cpp2
-rw-r--r--noatun-plugins/nexscope/gui.cpp2
-rw-r--r--noatun-plugins/nexscope/renderers.h2
-rw-r--r--noatun-plugins/oblique/cmodule.cpp2
9 files changed, 9 insertions, 9 deletions
diff --git a/noatun-plugins/alarm/wakeup.cpp b/noatun-plugins/alarm/wakeup.cpp
index fabec0a..b9f38d1 100644
--- a/noatun-plugins/alarm/wakeup.cpp
+++ b/noatun-plugins/alarm/wakeup.cpp
@@ -240,7 +240,7 @@ WakeupPrefs::WakeupPrefs( TQObject *parent ) :
grid->addWidget (minute7,7,2,TQt::AlignLeft);
grid->setColStretch (0,3);
- TQButtonGroup *modeGroup = new TQButtonGroup (3, Qt::Vertical, i18n ("Volume Control"),this);
+ TQButtonGroup *modeGroup = new TQButtonGroup (3, TQt::Vertical, i18n ("Volume Control"),this);
alarmmode = new TQRadioButton (i18n("No change to volume, just starts the player"),modeGroup);
nightmode = new TQRadioButton (i18n("The volume decreases slowly and finally stops the player"),modeGroup);
morningmode = new TQRadioButton (i18n("The player starts and the volume increases to the chosen value"),modeGroup);
diff --git a/noatun-plugins/alsaplayer/seeker.cpp b/noatun-plugins/alsaplayer/seeker.cpp
index 3149462..b440b2b 100644
--- a/noatun-plugins/alsaplayer/seeker.cpp
+++ b/noatun-plugins/alsaplayer/seeker.cpp
@@ -27,7 +27,7 @@
#include "seeker.h"
Seeker::Seeker(TQWidget * parent, const char * name)
- : L33tSlider(0, 1000, 10, 0,Qt::Horizontal, parent, name)
+ : L33tSlider(0, 1000, 10, 0,TQt::Horizontal, parent, name)
{
connect(this, TQT_SIGNAL(userChanged(int)), TQT_SLOT(slotValueChanged(int)));
diff --git a/noatun-plugins/alsaplayer/userinterface.cpp b/noatun-plugins/alsaplayer/userinterface.cpp
index a7fdadf..cbd6598 100644
--- a/noatun-plugins/alsaplayer/userinterface.cpp
+++ b/noatun-plugins/alsaplayer/userinterface.cpp
@@ -250,7 +250,7 @@ void AlsaPlayer::slotPlayListHidden()
void AlsaPlayer::mousePressEvent(TQMouseEvent * e)
{
- if (e->button() == Qt::RightButton)
+ if (e->button() == TQt::RightButton)
{
NoatunStdAction::ContextMenu::showContextMenu();
return;
diff --git a/noatun-plugins/charlatan/seeker.cpp b/noatun-plugins/charlatan/seeker.cpp
index 7368b37..8e639d8 100644
--- a/noatun-plugins/charlatan/seeker.cpp
+++ b/noatun-plugins/charlatan/seeker.cpp
@@ -28,7 +28,7 @@
#include "seeker.moc"
Seeker::Seeker(TQWidget * parent)
- : TQSlider(0, 60, 10, 0,Qt::Horizontal, parent),
+ : TQSlider(0, 60, 10, 0,TQt::Horizontal, parent),
adjusting_(false)
{
delayedUpdateTimer_ = new TQTimer(this);
diff --git a/noatun-plugins/charlatan/userinterface.cpp b/noatun-plugins/charlatan/userinterface.cpp
index e99845a..88314d5 100644
--- a/noatun-plugins/charlatan/userinterface.cpp
+++ b/noatun-plugins/charlatan/userinterface.cpp
@@ -344,7 +344,7 @@ void Charlatan::slotPlayListHidden()
void Charlatan::mousePressEvent(TQMouseEvent * e)
{
- if (e->button() == Qt::RightButton)
+ if (e->button() == TQt::RightButton)
{
NoatunStdAction::ContextMenu::showContextMenu();
return;
diff --git a/noatun-plugins/lyrics/cmodule.cpp b/noatun-plugins/lyrics/cmodule.cpp
index ac21c22..2a955b4 100644
--- a/noatun-plugins/lyrics/cmodule.cpp
+++ b/noatun-plugins/lyrics/cmodule.cpp
@@ -57,7 +57,7 @@ LyricsCModule::LyricsCModule(TQObject *_parent) : CModule(i18n("Lyrics"), i18n("
providersBox = new TDEListBox( this, "providersBox" );
boxlayout->addWidget(providersBox);
- boxButtons = new KButtonBox( this,Qt::Vertical );
+ boxButtons = new KButtonBox( this,TQt::Vertical );
boxButtons->addButton( i18n( "New Search Provider" ), TQT_TQOBJECT(this), TQT_SLOT( newSearch() ) );
boxButtons->addButton( i18n( "Delete Search Provider" ), TQT_TQOBJECT(this), TQT_SLOT( delSearch() ) );
boxButtons->addButton( i18n( "Move Up" ), TQT_TQOBJECT(this), TQT_SLOT( moveUpSearch() ) );
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
diff --git a/noatun-plugins/oblique/cmodule.cpp b/noatun-plugins/oblique/cmodule.cpp
index 044119e..b3bf45f 100644
--- a/noatun-plugins/oblique/cmodule.cpp
+++ b/noatun-plugins/oblique/cmodule.cpp
@@ -151,7 +151,7 @@ SchemaConfig::SchemaConfig(TQWidget *parent, Oblique *oblique)
{
TQGroupBox *groupbox = new TQGroupBox(
- 3, Qt::Horizontal, i18n("Options"), side
+ 3, TQt::Horizontal, i18n("Options"), side
);
mOptionPlayable = new TQCheckBox(i18n("Play&able"), groupbox);