summaryrefslogtreecommitdiffstats
path: root/addon/doxmlparser/src/sectionhandler.cpp
diff options
context:
space:
mode:
authorDimitri van Heesch <doxygen@gmail.com>2019-08-04 17:01:52 (GMT)
committerDimitri van Heesch <doxygen@gmail.com>2019-08-04 17:01:52 (GMT)
commita9dc222845e49f8010c409469455e1b2d183fad0 (patch)
tree5c6a3db374d42beb091399f29f3cc7d6a4d178d8 /addon/doxmlparser/src/sectionhandler.cpp
parent1abdec7eeeaec850067a5847c9174e99855c110b (diff)
parent3c3efc26e6b258ef2c3916f7e1b2c07254039ad4 (diff)
downloadDoxygen-a9dc222845e49f8010c409469455e1b2d183fad0.zip
Doxygen-a9dc222845e49f8010c409469455e1b2d183fad0.tar.gz
Doxygen-a9dc222845e49f8010c409469455e1b2d183fad0.tar.bz2
Merge branch 'feature/bug_endblock_msg' of https://github.com/albert-github/doxygen into albert-github-feature/bug_endblock_msg
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 075cc73..b6cc31e 100644
--- a/addon/doxmlparser/src/sectionhandler.cpp
+++ b/addon/doxmlparser/src/sectionhandler.cpp
@@ -70,7 +70,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;
@@ -112,7 +112,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)
@@ -143,7 +143,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)