diff options
author | Martin Smith <msmith@trolltech.com> | 2009-10-08 14:01:22 (GMT) |
---|---|---|
committer | Martin Smith <msmith@trolltech.com> | 2009-10-08 14:02:54 (GMT) |
commit | dc69ddd069d687c748027790660818d2c79d3dfc (patch) | |
tree | 7721ade79a63fab17b5b3debcb5e35e588360060 /tools/qdoc3/codemarker.h | |
parent | d64c806a7876937cceffd3d3185cf44510ec554e (diff) | |
download | Qt-dc69ddd069d687c748027790660818d2c79d3dfc.zip Qt-dc69ddd069d687c748027790660818d2c79d3dfc.tar.gz Qt-dc69ddd069d687c748027790660818d2c79d3dfc.tar.bz2 |
doc: Changed the format of the since list.
This is a big change from the original,
and I expect we will want modifications.
Diffstat (limited to 'tools/qdoc3/codemarker.h')
-rw-r--r-- | tools/qdoc3/codemarker.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/qdoc3/codemarker.h b/tools/qdoc3/codemarker.h index e400f8a..9858484 100644 --- a/tools/qdoc3/codemarker.h +++ b/tools/qdoc3/codemarker.h @@ -71,6 +71,8 @@ struct Section : name(name0), singularMember(singularMember0), pluralMember(pluralMember0) { } + void appendMember(Node* node) { members.append(node); } + void appendReimpMember(Node* node) { reimpMembers.append(node); } }; struct FastSection |