-rw-r--r-- | microkde/kresources/managerimpl.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/microkde/kresources/managerimpl.cpp b/microkde/kresources/managerimpl.cpp index 81bbbec..5bd9eb7 100644 --- a/microkde/kresources/managerimpl.cpp +++ b/microkde/kresources/managerimpl.cpp @@ -35,4 +35,5 @@ $Id$ #include <kconfig.h> #include <kstandarddirs.h> +#include <qfile.h> #include "resource.h" @@ -69,4 +70,10 @@ void ManagerImpl::createStandardConfig() QString file = locateLocal( "data", KGlobal::getAppName() + "/kresources/" + mFamily + "rc" ); + if ( mFamily == "tmpcontact" ) { + if (QFile::exists ( file ) ){ + QFile::remove ( file ); + qDebug("removed tmp rc file: %s ", file.latin1()); + } + } mStdConfig = new KConfig( file ); } |