summaryrefslogtreecommitdiffstats
path: root/tools/xmlpatterns
diff options
context:
space:
mode:
authorJanne Anttila <janne.anttila@digia.com>2009-12-02 10:19:41 +0200
committerJanne Anttila <janne.anttila@digia.com>2009-12-02 12:41:19 +0200
commit1b6c1054c1ad8f99665ceaa958da01b1383a3e34 (patch)
treee9b86b62532a19a6d4e9795831a5912138c0aaaa /tools/xmlpatterns
parentfb01592ef98dbaa4d0591df77cffaaf0ea0e117a (diff)
Fixed "illegal empty declaration" warning from \tools\xmlpatterns
The following warning was reported by Symbian compilers: tools\xmlpatterns\main.cpp:83: warning: illegal empty declaration Reviewed-by: TrustMe
Diffstat (limited to 'tools/xmlpatterns')
-rw-r--r--tools/xmlpatterns/main.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/xmlpatterns/main.cpp b/tools/xmlpatterns/main.cpp
index a930b70640..604523b225 100644
--- a/tools/xmlpatterns/main.cpp
+++ b/tools/xmlpatterns/main.cpp
@@ -80,14 +80,14 @@ QT_USE_NAMESPACE
Represents the name and value found in "-param name=value".
*/
typedef QPair<QString, QString> Parameter;
-Q_DECLARE_METATYPE(Parameter);
+Q_DECLARE_METATYPE(Parameter)
/*!
\internal
\since 4.4
For the -output switch.
*/
-Q_DECLARE_METATYPE(QIODevice *);
+Q_DECLARE_METATYPE(QIODevice *)
/*!
\class PatternistApplicationParser