diff options
author | Martin Smith <msmith@trolltech.com> | 2009-11-10 12:38:13 (GMT) |
---|---|---|
committer | Martin Smith <msmith@trolltech.com> | 2009-11-11 12:47:39 (GMT) |
commit | 001d2291bb887139597be5d42753227267f49394 (patch) | |
tree | dc04cabc6dc22aebdd804a3f4547397d60f632b3 /tools/qdoc3/cppcodeparser.h | |
parent | 37de9752d214b581dea3896676663d6815a932c1 (diff) | |
download | Qt-001d2291bb887139597be5d42753227267f49394.zip Qt-001d2291bb887139597be5d42753227267f49394.tar.gz Qt-001d2291bb887139597be5d42753227267f49394.tar.bz2 |
qdoc3: Allow the full signature for QML signals and methods
...in the \qmlmethod and \qmlsignal commands, and the
corresponding "attached" ones. Previously, the type was
not allowed, but it really should be there, which means
the \qmlmethod and \qmlsignal commands should be updated
throughout.
Diffstat (limited to 'tools/qdoc3/cppcodeparser.h')
-rw-r--r-- | tools/qdoc3/cppcodeparser.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tools/qdoc3/cppcodeparser.h b/tools/qdoc3/cppcodeparser.h index 87c1b69..e2e9d55 100644 --- a/tools/qdoc3/cppcodeparser.h +++ b/tools/qdoc3/cppcodeparser.h @@ -99,11 +99,11 @@ class CppCodeParser : public CodeParser const QString& arg, QString& type, QString& element, - QString& property); - bool splitQmlArg(const Doc& doc, - const QString& arg, - QString& element, - QString& name); + QString& name); + bool splitQmlMethodArg(const Doc& doc, + const QString& arg, + QString& type, + QString& element); #endif virtual QSet<QString> otherMetaCommands(); virtual void processOtherMetaCommand(const Doc& doc, |