summaryrefslogtreecommitdiffstats
path: root/addon/doxmlparser/src/sectionhandler.cpp
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 /addon/doxmlparser/src/sectionhandler.cpp
parent962b9c9a85384f358258725767d5ae5a2784a0e8 (diff)
downloadDoxygen-3c3efc26e6b258ef2c3916f7e1b2c07254039ad4.zip
Doxygen-3c3efc26e6b258ef2c3916f7e1b2c07254039ad4.tar.gz
Doxygen-3c3efc26e6b258ef2c3916f7e1b2c07254039ad4.tar.bz2
Correction warning message
Consistency
Diffstat (limited to 'addon/doxmlparser/src/sectionhandler.cpp')
-rw-r--r--addon/doxmlparser/src/sectionhandler.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/addon/doxmlparser/src/sectionhandler.cpp b/addon/doxmlparser/src/sectionhandler.cpp
index 1137901..cadd82b 100644
--- a/addon/doxmlparser/src/sectionhandler.cpp
+++ b/addon/doxmlparser/src/sectionhandler.cpp
@@ -68,7 +68,7 @@ class SectionTypeMap
int *val = m_map.find(s.utf8());
if (val==0)
{
- debug(1,"Warning: `%s' is an invalid section type\n",s.data());
+ debug(1,"Warning: '%s' is an invalid section type\n",s.data());
return ISection::Invalid;
}
else return (ISection::SectionKind)*val;
@@ -110,7 +110,7 @@ void SectionHandler::startSection(const QXmlAttributes& attrib)
m_parent->setDelegate(this);
m_kindString = attrib.value("kind");
m_kind = s_typeMap->map(m_kindString);
- debug(2,"section kind=`%s'\n",m_kindString.data());
+ debug(2,"section kind='%s'\n",m_kindString.data());
}
void SectionHandler::startDescription(const QXmlAttributes& attrib)
@@ -141,7 +141,7 @@ void SectionHandler::startHeader(const QXmlAttributes&)
void SectionHandler::endHeader()
{
m_header = m_curString.stripWhiteSpace();
- debug(2,"member header=`%s'\n",m_header.data());
+ debug(2,"member header='%s'\n",m_header.data());
}
void SectionHandler::initialize(CompoundHandler *ch)