summaryrefslogtreecommitdiffstats
path: root/kaffeine/src/player-parts/xine-part/xine_part.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'kaffeine/src/player-parts/xine-part/xine_part.cpp')
-rw-r--r--kaffeine/src/player-parts/xine-part/xine_part.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/kaffeine/src/player-parts/xine-part/xine_part.cpp b/kaffeine/src/player-parts/xine-part/xine_part.cpp
index bb9ec59..2b11777 100644
--- a/kaffeine/src/player-parts/xine-part/xine_part.cpp
+++ b/kaffeine/src/player-parts/xine-part/xine_part.cpp
@@ -1308,10 +1308,10 @@ void XinePart::slotLaunchExternally()
void XinePart::slotLaunchDelayed()
{
kdDebug() << "XinePart: Start Kaffeine with argument: " << m_mrl.url() << endl;
- KProcess process;
+ TDEProcess process;
process << "kaffeine" << m_mrl.url();
kdDebug() << "XinePart: Launching Kaffeine externaly..." << endl;
- process.start(KProcess::DontCare);
+ process.start(TDEProcess::DontCare);
process.detach();
}
@@ -1440,7 +1440,7 @@ void XinePart::initActions()
m_playTime = new TQPushButton(0);
TQToolTip::add
(m_playTime, i18n("Short click: Toggle Timer Forward/Backward\nLong click: Toggle Timer OSD"));
- TQFontMetrics met(KGlobalSettings::generalFont());
+ TQFontMetrics met(TDEGlobalSettings::generalFont());
m_playTime->setFixedWidth(met.width("-55:55:55") + 6);
m_playTime->setSizePolicy(TQSizePolicy (TQSizePolicy::Fixed, TQSizePolicy::Fixed));
m_playTime->setFocusPolicy(TQ_NoFocus);