summaryrefslogtreecommitdiffstats
path: root/src/app/xineEngine.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/app/xineEngine.cpp')
-rw-r--r--src/app/xineEngine.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/app/xineEngine.cpp b/src/app/xineEngine.cpp
index ba3c76b..6691288 100644
--- a/src/app/xineEngine.cpp
+++ b/src/app/xineEngine.cpp
@@ -8,7 +8,7 @@
#include "config.h"
#include "debug.h"
#include <limits>
-#include <klocale.h>
+#include <tdelocale.h>
#include "mxcl.library.h"
#include <ntqapplication.h> //::sendEvent()
#include <ntqdatetime.h> //record()
@@ -189,7 +189,7 @@ VideoWindow::eject()
if( m_url.isEmpty() )
return;
- KConfig *profile = TheStream::profile(); // the config profile for this video file
+ TDEConfig *profile = TheStream::profile(); // the config profile for this video file
#define writeParameter( param, default ) { \
const int value = xine_get_param( m_stream, param ); \
@@ -245,7 +245,7 @@ VideoWindow::load( const KURL &url )
debug() << "xine_open()\n";
if( xine_open( m_stream, url.url().local8Bit() ) )
{
- KConfig *profile = TheStream::profile();
+ TDEConfig *profile = TheStream::profile();
#define setParameter( param, default ) xine_set_param( m_stream, param, profile->readNumEntry( TQString::number( param ), default ) );
setParameter( XINE_PARAM_VO_HUE, 32768 );
setParameter( XINE_PARAM_VO_SATURATION, 32772 );
@@ -753,7 +753,7 @@ VideoWindow::xineEventListener( void *p, const xine_event_t* xineEvent )
TQString
msg = "%1 %2%";
msg = msg.arg( TQString::fromUtf8( pd->description ) )
- .arg( KGlobal::locale()->formatNumber( pd->percent, 0 ) );
+ .arg( TDEGlobal::locale()->formatNumber( pd->percent, 0 ) );
TQApplication::postEvent( engine, new TQCustomEvent( TQEvent::Type(3000), new TQString( msg ) ) );
break;