C++ tooltip: Integration with qdocs now only with 4.7 html marks.

This commit is contained in:
Leandro Melo
2010-07-21 17:25:58 +02:00
parent aae95a24a2
commit 5a1983f924
4 changed files with 96 additions and 258 deletions

View File

@@ -82,17 +82,17 @@ private:
ClassOrNamespace,
Enum,
Typedef,
Var,
Macro,
Brief,
Function
Function,
Unknown
};
HelpCandidate(const QString &helpId, const QString &markId, Category category) :
m_helpId(helpId), m_markId(markId), m_category(category)
HelpCandidate(const QString &helpId, const QString &docMark, Category category) :
m_helpId(helpId), m_docMark(docMark), m_category(category)
{}
QString m_helpId;
QString m_markId;
QString m_docMark;
Category m_category;
};