diff options
author | Olivier Goffart <ogoffart@trolltech.com> | 2009-07-30 10:11:57 +0200 |
---|---|---|
committer | Olivier Goffart <ogoffart@trolltech.com> | 2009-07-30 10:13:35 +0200 |
commit | 9523b27be4fe00870d19c4ff4caa2d78dcf520e6 (patch) | |
tree | 54a8dec77cf9f165072ebb48f9a74bbc78aa502e /src/tools | |
parent | d09fa4a816c6b9ccf306b7e1a887c4a4b1dc2f4e (diff) | |
download | qt4-tools-9523b27be4fe00870d19c4ff4caa2d78dcf520e6.tar.gz |
parse Q_INVOKABLE explicit constructors
regression introduced in e43eae35 because the code of maybeParseFunction
and parseFunction is not exactly the same.
Reviewed-by: Kent Hansen
Diffstat (limited to 'src/tools')
-rw-r--r-- | src/tools/moc/moc.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/moc/moc.cpp b/src/tools/moc/moc.cpp index 797595f839..0ba7d538bb 100644 --- a/src/tools/moc/moc.cpp +++ b/src/tools/moc/moc.cpp @@ -429,7 +429,7 @@ bool Moc::parseMaybeFunction(const ClassDef *cdef, FunctionDef *def) { def->isVirtual = false; //skip modifiers and attributes - while (test(INLINE) || test(STATIC) || + while (test(EXPLICIT) || test(INLINE) || test(STATIC) || (test(VIRTUAL) && (def->isVirtual = true)) //mark as virtual || testFunctionAttribute(def)) {} bool tilde = test(TILDE); |