diff options
author | Dimitri van Heesch <dimitri@stack.nl> | 2003-04-21 13:56:37 (GMT) |
---|---|---|
committer | Dimitri van Heesch <dimitri@stack.nl> | 2003-04-21 13:56:37 (GMT) |
commit | 2eef94da7bc476987b1a46690bbdaeb76a05dd82 (patch) | |
tree | 3db0b381fb31e078de0540249c869667f44ec68d /src/docparser.h | |
parent | 7e0aeda8a19448b44750f2530864432c964b0374 (diff) | |
download | Doxygen-2eef94da7bc476987b1a46690bbdaeb76a05dd82.zip Doxygen-2eef94da7bc476987b1a46690bbdaeb76a05dd82.tar.gz Doxygen-2eef94da7bc476987b1a46690bbdaeb76a05dd82.tar.bz2 |
Release-1.3-20030421
Diffstat (limited to 'src/docparser.h')
-rw-r--r-- | src/docparser.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/docparser.h b/src/docparser.h index 72c7d9b..d413a5a 100644 --- a/src/docparser.h +++ b/src/docparser.h @@ -532,11 +532,11 @@ class DocTitle : public CompAccept<DocTitle>, public DocNode class DocXRefItem : public CompAccept<DocXRefItem>, public DocNode { public: - enum Type { Bug, Test, Todo, Deprecated }; - DocXRefItem(DocNode *parent,int id,Type t) : - m_parent(parent), m_id(id), m_type(t) {} + //enum Type { Bug, Test, Todo, Deprecated }; + DocXRefItem(DocNode *parent,int id,const char *key) : + m_parent(parent), m_id(id), m_key(key) /*, m_type(t)*/ {} Kind kind() const { return Kind_XRefItem; } - Type type() const { return m_type; } + //Type type() const { return m_type; } QString file() const { return m_file; } QString anchor() const { return m_anchor; } QString title() const { return m_title; } @@ -547,7 +547,7 @@ class DocXRefItem : public CompAccept<DocXRefItem>, public DocNode private: DocNode *m_parent; int m_id; - Type m_type; + QString m_key; QString m_file; QString m_anchor; QString m_title; @@ -927,7 +927,7 @@ class DocPara : public CompAccept<DocPara>, public DocNode int handleHtmlStartTag(const QString &tagName,const HtmlAttribList &tagHtmlAttribs); int handleHtmlEndTag(const QString &tagName); int handleSimpleSection(DocSimpleSect::Type t); - int handleXRefItem(DocXRefItem::Type t); + int handleXRefItem(); int handleParamSection(const QString &cmdName,DocParamSect::Type t); void handleIncludeOperator(const QString &cmdName,DocIncOperator::Type t); void handleImage(const QString &cmdName); |