diff options
author | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2007-07-19 13:04:41 (GMT) |
---|---|---|
committer | dimitri <dimitri@afe2bf4a-e733-0410-8a33-86f594647bc7> | 2007-07-19 13:04:41 (GMT) |
commit | 687fe7a1487c68f0c6b4ef7d169b23ff274ab9ca (patch) | |
tree | 7c115c97f09109f537a6eb50b9baa3c0cd91d07d /src/textdocvisitor.h | |
parent | 34ca582041237fd0b2c91b58afd2a39dc91cf0a8 (diff) | |
download | Doxygen-687fe7a1487c68f0c6b4ef7d169b23ff274ab9ca.zip Doxygen-687fe7a1487c68f0c6b4ef7d169b23ff274ab9ca.tar.gz Doxygen-687fe7a1487c68f0c6b4ef7d169b23ff274ab9ca.tar.bz2 |
Release-1.5.2-20070719
Diffstat (limited to 'src/textdocvisitor.h')
-rw-r--r-- | src/textdocvisitor.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/textdocvisitor.h b/src/textdocvisitor.h index cf7788a..8e70da9 100644 --- a/src/textdocvisitor.h +++ b/src/textdocvisitor.h @@ -36,11 +36,11 @@ class TextDocVisitor : public DocVisitor // visitor functions for leaf nodes //-------------------------------------- - void visit(DocWord *w) { m_t << w->word(); } - void visit(DocLinkedWord *w) { m_t << w->word(); } + void visit(DocWord *w) { filter(w->word()); } + void visit(DocLinkedWord *w) { filter(w->word()); } void visit(DocWhiteSpace *) { m_t << " "; } void visit(DocSymbol *); - void visit(DocURL *u) { m_t << u->url(); } + void visit(DocURL *u) { filter(u->url()); } void visit(DocLineBreak *) { m_t << " "; } void visit(DocHorRuler *) {} void visit(DocStyleChange *) {} |