diff options
author | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-31 13:29:09 -0600 |
---|---|---|
committer | Timothy Pearson <kb9vqf@pearsoncomputing.net> | 2013-01-31 13:29:09 -0600 |
commit | f2225fc1f936c1d9e6a5570a63ffe12c366176bf (patch) | |
tree | cf0b7f61bb88ea0a2e155d4cffeeb4eaaa8549dd /libtdepim | |
parent | 0922423eb834afb70e3323db43062cf4083dc298 (diff) | |
download | tdepim-f2225fc1f936c1d9e6a5570a63ffe12c366176bf.tar.gz tdepim-f2225fc1f936c1d9e6a5570a63ffe12c366176bf.zip |
Rename KStandard for enhanced compatibility with KDE4
Diffstat (limited to 'libtdepim')
-rw-r--r-- | libtdepim/kcmdesignerfields.cpp | 4 | ||||
-rw-r--r-- | libtdepim/pluginloader.h | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/libtdepim/kcmdesignerfields.cpp b/libtdepim/kcmdesignerfields.cpp index 72613f158..47d3b9102 100644 --- a/libtdepim/kcmdesignerfields.cpp +++ b/libtdepim/kcmdesignerfields.cpp @@ -163,7 +163,7 @@ void KCMDesignerFields::delayedInit() // Install a dirwatcher that will detect newly created or removed designer files KDirWatch *dw = new KDirWatch( TQT_TQOBJECT(this) ); - KStandardDirs::makeDir(localUiDir()); + TDEStandardDirs::makeDir(localUiDir()); dw->addDir( localUiDir(), true ); connect( dw, TQT_SIGNAL( created(const TQString&) ), TQT_SLOT( rebuildList() ) ); connect( dw, TQT_SIGNAL( deleted(const TQString&) ), TQT_SLOT( rebuildList() ) ); @@ -264,7 +264,7 @@ void KCMDesignerFields::initGUI() TQVBoxLayout *layout = new TQVBoxLayout( this, KDialog::marginHint(), KDialog::spacingHint() ); - bool noDesigner = KStandardDirs::findExe("designer").isEmpty(); + bool noDesigner = TDEStandardDirs::findExe("designer").isEmpty(); if ( noDesigner ) { diff --git a/libtdepim/pluginloader.h b/libtdepim/pluginloader.h index 6d38bbd18..c6b805551 100644 --- a/libtdepim/pluginloader.h +++ b/libtdepim/pluginloader.h @@ -47,7 +47,7 @@ namespace KPIM { * <dt>T_config::path</dt><dd>The search pattern for <tt>.desktop</tt> files * containing the plugin descriptions. This is the string passed as * the @p filter argument to - * <code>KStandardDirs::findAllResources</code>.</dd> + * <code>TDEStandardDirs::findAllResources</code>.</dd> * </dl> * * The last two parameters being strings, they are passed via an |