summaryrefslogtreecommitdiffstats
path: root/libk3b
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-31 13:16:17 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-31 13:16:17 -0600
commit5f3c4af105444b1cf4ea099910cad0b2c178954c (patch)
tree8b57ce38b5958f642e0a89951647ecd151656b75 /libk3b
parentd012fd9b3d5f0e1553dfa8622e2905aa3e7fa90e (diff)
downloadk3b-5f3c4af105444b1cf4ea099910cad0b2c178954c.tar.gz
k3b-5f3c4af105444b1cf4ea099910cad0b2c178954c.zip
Rename KStandard for enhanced compatibility with KDE4
Diffstat (limited to 'libk3b')
-rw-r--r--libk3b/core/k3bglobals.cpp4
-rw-r--r--libk3b/core/k3bglobals.h2
-rw-r--r--libk3b/jobs/k3bvideodvdtitletranscodingjob.cpp2
3 files changed, 4 insertions, 4 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;
}
diff --git a/libk3b/core/k3bglobals.h b/libk3b/core/k3bglobals.h
index 1a31696..c6d2111 100644
--- a/libk3b/core/k3bglobals.h
+++ b/libk3b/core/k3bglobals.h
@@ -145,7 +145,7 @@ namespace K3b
LIBK3B_EXPORT TQString findTempFile( const TQString& ending = TQString(), const TQString& d = TQString() );
/**
- * Wrapper around KStandardDirs::findExe which searches the PATH and some additional
+ * Wrapper around TDEStandardDirs::findExe which searches the PATH and some additional
* directories to find system tools which are normally only in root's PATH.
*/
LIBK3B_EXPORT TQString findExe( const TQString& name );
diff --git a/libk3b/jobs/k3bvideodvdtitletranscodingjob.cpp b/libk3b/jobs/k3bvideodvdtitletranscodingjob.cpp
index 39eb7dc..a0a2f05 100644
--- a/libk3b/jobs/k3bvideodvdtitletranscodingjob.cpp
+++ b/libk3b/jobs/k3bvideodvdtitletranscodingjob.cpp
@@ -118,7 +118,7 @@ void K3bVideoDVDTitleTranscodingJob::start()
// let's see if the directory exists and we can write to it
TQFileInfo fileInfo( m_filename );
TQFileInfo dirInfo( fileInfo.dirPath() );
- if( !dirInfo.exists() && !KStandardDirs::makeDir( dirInfo.absFilePath() ) ) {
+ if( !dirInfo.exists() && !TDEStandardDirs::makeDir( dirInfo.absFilePath() ) ) {
emit infoMessage( i18n("Unable to create folder '%1'").arg(dirInfo.filePath()), ERROR );
return;
}