summaryrefslogtreecommitdiffstats
path: root/addon/doxmlparser/src/compoundhandler.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/compoundhandler.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/compoundhandler.cpp')
-rw-r--r--addon/doxmlparser/src/compoundhandler.cpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/addon/doxmlparser/src/compoundhandler.cpp b/addon/doxmlparser/src/compoundhandler.cpp
index 0f51792..077c8fb 100644
--- a/addon/doxmlparser/src/compoundhandler.cpp
+++ b/addon/doxmlparser/src/compoundhandler.cpp
@@ -153,7 +153,7 @@ class CompoundTypeMap
int *val = m_map.find(s.utf8());
if (val==0)
{
- debug(1,"Warning: `%s' is an invalid compound type\n",s.data());
+ debug(1,"Warning: '%s' is an invalid compound type\n",s.data());
return ICompound::Invalid;
}
else return (ICompound::CompoundKind)*val;
@@ -326,7 +326,7 @@ void CompoundHandler::startCompound(const QXmlAttributes& attrib)
m_kindString = attrib.value("kind");
m_kind = s_typeMap->map(m_kindString);
m_protection = attrib.value("prot");
- debug(2,"startCompound(id=`%s' type=`%s')\n",m_id.data(),m_kindString.data());
+ debug(2,"startCompound(id='%s' type='%s')\n",m_id.data(),m_kindString.data());
}
void CompoundHandler::endCompound()
@@ -346,7 +346,7 @@ void CompoundHandler::startLocation(const QXmlAttributes& attrib)
void CompoundHandler::endCompoundName()
{
m_name = m_curString.stripWhiteSpace();
- debug(2,"Compound name `%s'\n",m_name.data());
+ debug(2,"Compound name '%s'\n",m_name.data());
}
void CompoundHandler::startInnerClass(const QXmlAttributes& attrib)
@@ -413,7 +413,7 @@ void CompoundHandler::startSuperClass(const QXmlAttributes& attrib)
prot,
kind
);
- debug(2,"super class id=`%s' prot=`%s' virt=`%s'\n",
+ debug(2,"super class id='%s' prot='%s' virt='%s'\n",
attrib.value("refid").data(),
protString.data(),
kindString.data());
@@ -443,7 +443,7 @@ void CompoundHandler::startSubClass(const QXmlAttributes& attrib)
prot,
kind
);
- debug(2,"sub class id=`%s' prot=`%s' virt=`%s'\n",
+ debug(2,"sub class id='%s' prot='%s' virt='%s'\n",
attrib.value("refid").data(),
protString.data(),
kindString.data());