diff options
Diffstat (limited to 'libk3b/core/k3bglobals.cpp')
-rw-r--r-- | libk3b/core/k3bglobals.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libk3b/core/k3bglobals.cpp b/libk3b/core/k3bglobals.cpp index 6001072..47ec9ca 100644 --- a/libk3b/core/k3bglobals.cpp +++ b/libk3b/core/k3bglobals.cpp @@ -526,11 +526,11 @@ TQ_INT64 K3b::fromLe64( char* data ) TQString K3b::findExe( const TQString& name ) { // first we search the path - TQString bin = KStandardDirs::findExe( name ); + TQString bin = TDEStandardDirs::findExe( name ); // then go on with our own little list if( bin.isEmpty() ) - bin = KStandardDirs::findExe( name, k3bcore->externalBinManager()->searchPath().join(":") ); + bin = TDEStandardDirs::findExe( name, k3bcore->externalBinManager()->searchPath().join(":") ); return bin; } |