summaryrefslogtreecommitdiffstats
path: root/src/corelib/doc/snippets/statemachine/eventtest.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/corelib/doc/snippets/statemachine/eventtest.cpp')
-rw-r--r--src/corelib/doc/snippets/statemachine/eventtest.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/corelib/doc/snippets/statemachine/eventtest.cpp b/src/corelib/doc/snippets/statemachine/eventtest.cpp
index c83e92ab77..7454344680 100644
--- a/src/corelib/doc/snippets/statemachine/eventtest.cpp
+++ b/src/corelib/doc/snippets/statemachine/eventtest.cpp
@@ -55,11 +55,11 @@ protected:
if (wrappedEvent->type() == QEvent::KeyPress) {
QKeyEvent *keyEvent = static_cast<QKeyEvent *>(wrappedEvent);
// Do your event test
- }
+ }
}
return false;
}
-//![0]
+//![0]
void onTransition(QEvent *event)
{