summaryrefslogtreecommitdiffstats
path: root/src/declarative/util/qmlanimation_p_p.h
diff options
context:
space:
mode:
authorWarwick Allison <warwick.allison@nokia.com>2009-12-04 00:30:01 (GMT)
committerWarwick Allison <warwick.allison@nokia.com>2009-12-04 00:30:01 (GMT)
commit6b35bde56028997a9a676f5135f0525575937dba (patch)
tree018388fc2ae820c14dd95dd93c2bada1a600399f /src/declarative/util/qmlanimation_p_p.h
parenta53133f18cb123f390ca0b33e3ff9490fdb85b8d (diff)
parent436b0fff9d9ba95c0fe582f3b71d15d5a9a8535f (diff)
downloadQt-6b35bde56028997a9a676f5135f0525575937dba.zip
Qt-6b35bde56028997a9a676f5135f0525575937dba.tar.gz
Qt-6b35bde56028997a9a676f5135f0525575937dba.tar.bz2
Merge branch 'kinetic-declarativeui' of git@scm.dev.nokia.troll.no:qt/kinetic into kinetic-declarativeui
Diffstat (limited to 'src/declarative/util/qmlanimation_p_p.h')
-rw-r--r--src/declarative/util/qmlanimation_p_p.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/declarative/util/qmlanimation_p_p.h b/src/declarative/util/qmlanimation_p_p.h
index 5dac59a..0b65c27 100644
--- a/src/declarative/util/qmlanimation_p_p.h
+++ b/src/declarative/util/qmlanimation_p_p.h
@@ -205,14 +205,14 @@ public:
connectedTimeLine(false), componentComplete(true), startOnCompletion(false),
target(0), group(0) {}
- bool running;
- bool paused;
- bool alwaysRunToEnd;
- bool repeat;
- bool connectedTimeLine;
-
- bool componentComplete;
- bool startOnCompletion;
+ bool running:1;
+ bool paused:1;
+ bool alwaysRunToEnd:1;
+ bool repeat:1;
+ bool connectedTimeLine:1;
+
+ bool componentComplete:1;
+ bool startOnCompletion:1;
void commence();