summaryrefslogtreecommitdiffstats
path: root/src/docparser.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2019-12-26 14:55:11 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2019-12-26 14:55:11 (GMT)
commit7d658d1a5d90959d02b8fe2b5d1630f1e1830bf0 (patch)
tree0ef009d02e614bf8d54dedc2c1f892526045ba1f /src/docparser.cpp
parentf76f1a7cd8b726003c3fe0b8ebc7e01986cc5be5 (diff)
downloadDoxygen-7d658d1a5d90959d02b8fe2b5d1630f1e1830bf0.zip
Doxygen-7d658d1a5d90959d02b8fe2b5d1630f1e1830bf0.tar.gz
Doxygen-7d658d1a5d90959d02b8fe2b5d1630f1e1830bf0.tar.bz2
Replaced \_fakeform by \_form
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 cd05833..5498adb 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("\\_fakeform#%d",id);
+ formCmd.sprintf("\\_form#%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 \_fakeform#<n> command
+ else // wrong \_form#<n> command
{
warn_doc_error(g_fileName,doctokenizerYYlineno,"Wrong formula id %d",id);
m_id = -1;