diff options
Diffstat (limited to 'amor/amoranim.cpp')
-rw-r--r-- | amor/amoranim.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/amor/amoranim.cpp b/amor/amoranim.cpp index 3dcfef5..4d7c071 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" @@ -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 ); } |