diff options
author | Alessandro Portale <alessandro.portale@nokia.com> | 2009-09-09 15:08:52 (GMT) |
---|---|---|
committer | Alessandro Portale <alessandro.portale@nokia.com> | 2009-09-09 15:08:52 (GMT) |
commit | b8a6c69d7e2a8bcfc7c5e11784e0c6efee86caf4 (patch) | |
tree | eb2f1fb6f760cf54949e0cf3b24770d46a59bccd /src/testlib | |
parent | 6715f2f29ae413b328243d8c3dbe15cfba51d33f (diff) | |
download | Qt-b8a6c69d7e2a8bcfc7c5e11784e0c6efee86caf4.zip Qt-b8a6c69d7e2a8bcfc7c5e11784e0c6efee86caf4.tar.gz Qt-b8a6c69d7e2a8bcfc7c5e11784e0c6efee86caf4.tar.bz2 |
Some unneeded semicolons less
Diffstat (limited to 'src/testlib')
-rw-r--r-- | src/testlib/qtestspontaneevent.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/testlib/qtestspontaneevent.h b/src/testlib/qtestspontaneevent.h index 0c670f8..2f00414 100644 --- a/src/testlib/qtestspontaneevent.h +++ b/src/testlib/qtestspontaneevent.h @@ -74,9 +74,9 @@ public: class QSpontaneKeyEvent { public: - void setSpontaneous() { spont = 1; }; - bool spontaneous() { return spont; }; - virtual void dummyFunc() { }; + void setSpontaneous() { spont = 1; } + bool spontaneous() { return spont; } + virtual void dummyFunc() {} virtual ~QSpontaneKeyEvent() {} #ifndef QTEST_NO_SIZEOF_CHECK |