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/node.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/node.h')
-rw-r--r-- | tools/qdoc3/node.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/qdoc3/node.h b/tools/qdoc3/node.h index 3f5be6c..dbdc174 100644 --- a/tools/qdoc3/node.h +++ b/tools/qdoc3/node.h @@ -579,6 +579,8 @@ class FunctionNode : public LeafNode const QString& element() const { return parent()->name(); } bool isAttached() const { return att; } + void debug() const; + private: void setAssociatedProperty(PropertyNode *property); |