summaryrefslogtreecommitdiffstats
path: root/src/docparser.cpp
diff options
context:
space:
mode:
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;