summaryrefslogtreecommitdiffstats
path: root/src/commentscan.l
diff options
context:
space:
mode:
authoralbert-github <albert.tests@gmail.com>2019-06-01 14:01:16 (GMT)
committeralbert-github <albert.tests@gmail.com>2019-06-01 14:01:16 (GMT)
commit3c3efc26e6b258ef2c3916f7e1b2c07254039ad4 (patch)
tree19bb93d1e138c2c00b144b36dbe92c3e9e387635 /src/commentscan.l
parent962b9c9a85384f358258725767d5ae5a2784a0e8 (diff)
downloadDoxygen-3c3efc26e6b258ef2c3916f7e1b2c07254039ad4.zip
Doxygen-3c3efc26e6b258ef2c3916f7e1b2c07254039ad4.tar.gz
Doxygen-3c3efc26e6b258ef2c3916f7e1b2c07254039ad4.tar.bz2
Correction warning message
Consistency
Diffstat (limited to 'src/commentscan.l')
-rw-r--r--src/commentscan.l4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/commentscan.l b/src/commentscan.l
index eb1629e..bf8a37f 100644
--- a/src/commentscan.l
+++ b/src/commentscan.l
@@ -2972,7 +2972,7 @@ static bool handleToc(const QCString &, const QCStringList &optList)
{
if (sscanf(opt.right(opt.length() - i - 1).data(),"%d%c",&level,&dum) != 1)
{
- warn(yyFileName,yyLineNr,"Unknown option:level specified with \\tableofcontents: `%s'", (*it).stripWhiteSpace().data());
+ warn(yyFileName,yyLineNr,"Unknown option:level specified with \\tableofcontents: '%s'", (*it).stripWhiteSpace().data());
opt = "";
}
else
@@ -3002,7 +3002,7 @@ static bool handleToc(const QCString &, const QCStringList &optList)
}
else
{
- warn(yyFileName,yyLineNr,"Unknown option specified with \\tableofcontents: `%s'", (*it).stripWhiteSpace().data());
+ warn(yyFileName,yyLineNr,"Unknown option specified with \\tableofcontents: '%s'", (*it).stripWhiteSpace().data());
}
}
}