summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/corelib/animation/qpropertyanimation.cpp2
-rw-r--r--src/corelib/doc/src/animation.qdoc13
2 files changed, 9 insertions, 6 deletions
diff --git a/src/corelib/animation/qpropertyanimation.cpp b/src/corelib/animation/qpropertyanimation.cpp
index 89bb6a3ef4..1fd3fe9b2e 100644
--- a/src/corelib/animation/qpropertyanimation.cpp
+++ b/src/corelib/animation/qpropertyanimation.cpp
@@ -50,7 +50,7 @@
QPropertyAnimation interpolates over \l{Qt's Property System}{Qt
properties}. As property values are stored in \l{QVariant}s, the
class inherits QVariantAnimation, and supports animation of the
- same \l{QVariant::Type}{variant types} as its super class.
+ same \l{QMetaType::Type}{meta types} as its super class.
A class declaring properties must be a QObject. To make it
possible to animate a property, it must provide a setter (so that
diff --git a/src/corelib/doc/src/animation.qdoc b/src/corelib/doc/src/animation.qdoc
index 3b5486c605..e71ee6b755 100644
--- a/src/corelib/doc/src/animation.qdoc
+++ b/src/corelib/doc/src/animation.qdoc
@@ -45,11 +45,14 @@
\keyword Animation
- The animation framework is part of the Kinetic project, and aims
- to provide an easy way for creating animated and smooth GUI's. By
- animating Qt properties, the framework provides great freedom for
- animating widgets and other \l{QObject}s. The framework can also
- be used with the Graphics View framework.
+ The animation framework aims to provide an easy way for creating animated
+ and smooth GUI's. By animating Qt properties, the framework provides great
+ freedom for animating widgets and other \l{QObject}s. The framework can
+ also be used with the Graphics View framework. Many of the concepts
+ available in the animation framework are also available in \l{Qt Quick},
+ where it offers a declarative way of defining animations. Much of the
+ knowledge acquired about the animation framework can be applied to
+ \l{Qt Quick}.
In this overview, we explain the basics of its architecture. We
also show examples of the most common techniques that the