summaryrefslogtreecommitdiffstats
path: root/ktux
diff options
context:
space:
mode:
authorTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-20 00:23:41 -0600
committerTimothy Pearson <kb9vqf@pearsoncomputing.net>2013-01-20 00:23:41 -0600
commit59ea7131b34cafad6181711d490cceafe0d0e87b (patch)
tree2c47a77c9e4bcb24cc8fed9fdcc3c52e7185a615 /ktux
parent545d48dc2acbfb766a1c277b6f82ae54eea3754f (diff)
downloadtdetoys-59ea7131b34cafad6181711d490cceafe0d0e87b.tar.gz
tdetoys-59ea7131b34cafad6181711d490cceafe0d0e87b.zip
Rename KApplication to TDEApplication to avoid conflicts with KDE4
Diffstat (limited to 'ktux')
-rw-r--r--ktux/spritemisc.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ktux/spritemisc.cpp b/ktux/spritemisc.cpp
index 4b239a6..80a1a2f 100644
--- a/ktux/spritemisc.cpp
+++ b/ktux/spritemisc.cpp
@@ -21,7 +21,7 @@ int SpriteRange::random() const
if (mMax != mMin)
{
- val = (KApplication::random()%(mMax-mMin)) + mMin;
+ val = (TDEApplication::random()%(mMax-mMin)) + mMin;
}
return val;