summaryrefslogtreecommitdiffstats
path: root/src/declarative/fx/qfxflipable.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/declarative/fx/qfxflipable.cpp')
-rw-r--r--src/declarative/fx/qfxflipable.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/declarative/fx/qfxflipable.cpp b/src/declarative/fx/qfxflipable.cpp
index 8e56e43..dc5101c 100644
--- a/src/declarative/fx/qfxflipable.cpp
+++ b/src/declarative/fx/qfxflipable.cpp
@@ -146,7 +146,7 @@ void QFxFlipable::setFront(QFxItem *front)
return;
}
d->front = front;
- children()->append(d->front);
+ fxChildren()->append(d->front);
if (Back == d->current)
d->front->setOpacity(0.);
}
@@ -165,7 +165,7 @@ void QFxFlipable::setBack(QFxItem *back)
return;
}
d->back = back;
- children()->append(d->back);
+ fxChildren()->append(d->back);
if (Front == d->current)
d->back->setOpacity(0.);
}