summaryrefslogtreecommitdiffstats
path: root/tdemid
diff options
context:
space:
mode:
authorMichele Calgaro <michele.calgaro@yahoo.it>2023-11-09 10:36:44 +0900
committerMichele Calgaro <michele.calgaro@yahoo.it>2023-11-09 17:21:45 +0900
commit5bdb51894d90ebc0d068ef5b3aec1cb2627433ed (patch)
tree3f540d2b927a7a79dba3093fe12eb119c2c2b79e /tdemid
parentff5c6681db05d5ed1d4d86872990cc317b114eee (diff)
downloadtdemultimedia-5bdb51894d90ebc0d068ef5b3aec1cb2627433ed.tar.gz
tdemultimedia-5bdb51894d90ebc0d068ef5b3aec1cb2627433ed.zip
Replace Qt with TQt
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it> (cherry picked from commit b3df4d055e72863ca51ec9c0428a490306989ff4)
Diffstat (limited to 'tdemid')
-rw-r--r--tdemid/channelview.cpp2
-rw-r--r--tdemid/tdemidclient.cpp4
2 files changed, 3 insertions, 3 deletions
diff --git a/tdemid/channelview.cpp b/tdemid/channelview.cpp
index 50a88f24..27410baa 100644
--- a/tdemid/channelview.cpp
+++ b/tdemid/channelview.cpp
@@ -44,7 +44,7 @@ ChannelView::ChannelView(void) : TDEMainWindow(0, "ChannelView")
Channel[i]->setGeometry(5,5+i*CHANNELHEIGHT,width()-20,CHANNELHEIGHT);
Channel[i]->show();
}
- scrollbar=new TQScrollBar(1,16,1,1,1,Qt::Vertical,this,"Channelscrollbar");
+ scrollbar=new TQScrollBar(1,16,1,1,1,TQt::Vertical,this,"Channelscrollbar");
connect(scrollbar,TQT_SIGNAL(valueChanged(int)),this,TQT_SLOT(ScrollChn(int)));
setScrollBarRange();
}
diff --git a/tdemid/tdemidclient.cpp b/tdemid/tdemidclient.cpp
index b05411bc..cc6cce2d 100644
--- a/tdemid/tdemidclient.cpp
+++ b/tdemid/tdemidclient.cpp
@@ -90,7 +90,7 @@ tdemidClient::tdemidClient(TQWidget *parent, TDEActionCollection *ac, const char
// currentsl=slman->getCollection(activecollection);
itsme=0;
m_kMid.pid=0;
- timebar = new TQSlider(0,240000,30000,60000,Qt::Horizontal, this);
+ timebar = new TQSlider(0,240000,30000,60000,TQt::Horizontal, this);
timebar->setSteps(30000,60000);
timebar->setValue(0);
connect (timebar,TQT_SIGNAL(valueChanged(int)),this,TQT_SLOT(slotSeek(int)));
@@ -125,7 +125,7 @@ tdemidClient::tdemidClient(TQWidget *parent, TDEActionCollection *ac, const char
rhythmview->setMaximumHeight(7);
rhythmview->setMinimumHeight(7);
- volumebar = new TQSlider(0,200,10,100,Qt::Vertical, this );
+ volumebar = new TQSlider(0,200,10,100,TQt::Vertical, this );
volumebar->setSteps(10,20);
volumebar->setValue(100);
volumebar->setTickmarks(TQSlider::NoMarks);