summaryrefslogtreecommitdiffstats
path: root/bin
diff options
context:
space:
mode:
authorKent Hansen <khansen@trolltech.com>2009-04-21 11:09:11 (GMT)
committerKent Hansen <khansen@trolltech.com>2009-04-21 11:09:11 (GMT)
commit04ce953e61acf5a73826b6207cf8bf2cdfce8f92 (patch)
tree211a63cdc216ecfbd6844379e1a27b69c4d603e8 /bin
parent1d150321ab0137b926ec226fcb868f3b38c36bfd (diff)
downloadQt-04ce953e61acf5a73826b6207cf8bf2cdfce8f92.zip
Qt-04ce953e61acf5a73826b6207cf8bf2cdfce8f92.tar.gz
Qt-04ce953e61acf5a73826b6207cf8bf2cdfce8f92.tar.bz2
update the package script according to class renaming
Diffstat (limited to 'bin')
-rw-r--r--bin/snapshot8
1 files changed, 4 insertions, 4 deletions
diff --git a/bin/snapshot b/bin/snapshot
index fa9a2ac..783d15c 100644
--- a/bin/snapshot
+++ b/bin/snapshot
@@ -76,9 +76,9 @@ my @files = (
"corelib/statemachine/qstatemachine.h",
"corelib/statemachine/qstatemachine_p.h",
"corelib/statemachine/qstate_p.h",
- "corelib/statemachine/qtransition.cpp",
- "corelib/statemachine/qtransition.h",
- "corelib/statemachine/qtransition_p.h",
+ "corelib/statemachine/qactiontransition.cpp",
+ "corelib/statemachine/qactiontransition.h",
+ "corelib/statemachine/qactiontransition_p.h",
"gui/statemachine/qkeyeventtransition.h",
"gui/statemachine/qkeyeventtransition.cpp",
"gui/statemachine/qbasickeyeventtransition.cpp",
@@ -264,7 +264,7 @@ sub copyFile
$filecontents =~s/QStateFinishedEvent/QtStateFinishedEvent/g;
$filecontents =~s/QStateFinishedTransition/QtStateFinishedTransition/g;
$filecontents =~s/QStateMachine/QtStateMachine/g;
- $filecontents =~s/QTransition/QtTransition/g;
+ $filecontents =~s/QActionTransition/QtActionTransition/g;
$filecontents =~s/QMouseEventTransition/QtMouseEventTransition/g;
$filecontents =~s/QKeyEventTransition/QtKeyEventTransition/g;
$filecontents =~s/QGraphicsWidget/QtGraphicsWidget/g;