Name fix.

This commit is contained in:
lotodore
2007-09-29 19:23:14 +00:00
parent e800a83193
commit 43103d6fea
6 changed files with 18 additions and 18 deletions
+4 -4
View File
@@ -51,9 +51,9 @@ void MyCardsPixmapLabel::startFadeOut(int speed) {
frameOpacity = 0.0;
if(speed <= 4) { opacityRaiseIntervall = 0.01; }
if(speed > 4 && speed <= 7) { opacityRaiseIntervall = 0.02; }
if(speed > 7 && speed <= 10) { opacityRaiseIntervall = 0.04; }
if(speed <= 4) { opacityRaiseInterval = 0.01; }
if(speed > 4 && speed <= 7) { opacityRaiseInterval = 0.02; }
if(speed > 7 && speed <= 10) { opacityRaiseInterval = 0.04; }
if(speed != 11) {
fadeOutAction = TRUE;
@@ -67,7 +67,7 @@ void MyCardsPixmapLabel::startFadeOut(int speed) {
void MyCardsPixmapLabel::nextFadeOutFrame() {
if (frameOpacity < 0.75) {
frameOpacity += opacityRaiseIntervall;
frameOpacity += opacityRaiseInterval;
update();
}
else {