diff options
author | Marc Mutz <[email protected]> | 2012-02-29 00:00:27 +0100 |
---|---|---|
committer | Qt by Nokia <[email protected]> | 2012-03-01 08:44:34 +0100 |
commit | 1cd4d6b1819f67b70dd359c7fc43ab06182cc34b (patch) | |
tree | c07312c6b6e5d6e3a854f408e27920bf77f4cd80 /examples/animation | |
parent | fb4dccee9a8d616ec43390f855caca08594d75b8 (diff) |
QEvent (and subclasses): make ctors explicit
Do this regardless of whether the event subclass
is public API or only used in examples. Examples
are examples, used by others as templates or even
copied verbatim, so they should also follow sound
engineering rules.
Anyway, there's only one in examples/...
Change-Id: I586ff16407a956c9e89288fdd4377eed73f45c0f
Reviewed-by: Samuel Rødal <[email protected]>
Diffstat (limited to 'examples/animation')
-rw-r--r-- | examples/animation/moveblocks/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/animation/moveblocks/main.cpp b/examples/animation/moveblocks/main.cpp index 8e7c04e9f07..d807bb63d91 100644 --- a/examples/animation/moveblocks/main.cpp +++ b/examples/animation/moveblocks/main.cpp @@ -50,7 +50,7 @@ public: { } - StateSwitchEvent(int rand) + explicit StateSwitchEvent(int rand) : QEvent(Type(StateSwitchType)), m_rand(rand) { |