diff options
Diffstat (limited to 'amor/amoranim.cpp')
-rw-r--r-- | amor/amoranim.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/amor/amoranim.cpp b/amor/amoranim.cpp index 3dcfef5..b8e67fd 100644 --- a/amor/amoranim.cpp +++ b/amor/amoranim.cpp @@ -26,7 +26,7 @@ */ #include <stdlib.h> #include <tdeapplication.h> -#include <kstandarddirs.h> +#include <tdestandarddirs.h> #include "amoranim.h" #include "amorpm.h" @@ -153,7 +153,7 @@ bool AmorThemeManager::setTheme(const TQString & file) delete mConfig; - mConfig = new KSimpleConfig(mPath, true); + mConfig = new TDESimpleConfig(mPath, true); mConfig->setGroup("Config"); // Get the directory where the pixmaps are stored and tell the @@ -198,7 +198,7 @@ AmorAnim *AmorThemeManager::random(const TQString & group) AmorAnimationGroup *animGroup = mAnimations.find(grp); if (animGroup) { - int idx = kapp->random()%animGroup->count(); + int idx = tdeApp->random()%animGroup->count(); return animGroup->at( idx ); } |