summaryrefslogtreecommitdiffstats
path: root/src/docparser.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2019-12-26 14:46:57 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2019-12-26 14:46:57 (GMT)
commitf76f1a7cd8b726003c3fe0b8ebc7e01986cc5be5 (patch)
tree0c590128e380e6fa444c3660d6e2c718f5d15653 /src/docparser.cpp
parent4377c7aee974aa25b79390a924e0d4debf928264 (diff)
parent9664e0b46ba516069d5fd740aac4ef4eb5f874cf (diff)
downloadDoxygen-f76f1a7cd8b726003c3fe0b8ebc7e01986cc5be5.zip
Doxygen-f76f1a7cd8b726003c3fe0b8ebc7e01986cc5be5.tar.gz
Doxygen-f76f1a7cd8b726003c3fe0b8ebc7e01986cc5be5.tar.bz2
Merge branch 'feature/bug_formula' of https://github.com/albert-github/doxygen into albert-github-feature/bug_formula
Diffstat (limited to 'src/docparser.cpp')
-rw-r--r--src/docparser.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/docparser.cpp b/src/docparser.cpp
index e1501d4..cd05833 100644
--- a/src/docparser.cpp
+++ b/src/docparser.cpp
@@ -2223,7 +2223,7 @@ DocFormula::DocFormula(DocNode *parent,int id) :
{
m_parent = parent;
QCString formCmd;
- formCmd.sprintf("\\form#%d",id);
+ formCmd.sprintf("\\_fakeform#%d",id);
Formula *formula=Doxygen::formulaNameDict->find(formCmd);
if (formula)
{
@@ -2231,7 +2231,7 @@ DocFormula::DocFormula(DocNode *parent,int id) :
m_name.sprintf("form_%d",m_id);
m_text = formula->getFormulaText();
}
- else // wrong \form#<n> command
+ else // wrong \_fakeform#<n> command
{
warn_doc_error(g_fileName,doctokenizerYYlineno,"Wrong formula id %d",id);
m_id = -1;