summaryrefslogtreecommitdiffstats
path: root/src/groupdef.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 /src/groupdef.cpp
parent962b9c9a85384f358258725767d5ae5a2784a0e8 (diff)
downloadDoxygen-3c3efc26e6b258ef2c3916f7e1b2c07254039ad4.zip
Doxygen-3c3efc26e6b258ef2c3916f7e1b2c07254039ad4.tar.gz
Doxygen-3c3efc26e6b258ef2c3916f7e1b2c07254039ad4.tar.bz2
Correction warning message
Consistency
Diffstat (limited to 'src/groupdef.cpp')
-rw-r--r--src/groupdef.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/groupdef.cpp b/src/groupdef.cpp
index 01c4cc4..8b73910 100644
--- a/src/groupdef.cpp
+++ b/src/groupdef.cpp
@@ -532,7 +532,7 @@ bool GroupDefImpl::insertMember(MemberDef *md,bool docOnly)
break;
default:
err("GroupDefImpl::insertMembers(): "
- "member `%s' (typeid=%d) with scope `%s' inserted in group scope `%s'!\n",
+ "member '%s' (typeid=%d) with scope '%s' inserted in group scope '%s'!\n",
md->name().data(),md->memberType(),
md->getClassDef() ? md->getClassDef()->name().data() : "",
name().data());
@@ -650,7 +650,7 @@ bool GroupDefImpl::findGroup(const GroupDef *def) const
void GroupDefImpl::addGroup(const GroupDef *def)
{
- //printf("adding group `%s' to group `%s'\n",def->name().data(),name().data());
+ //printf("adding group '%s' to group '%s'\n",def->name().data(),name().data());
//if (Config_getBool(SORT_MEMBER_DOCS))
// groupList->inSort(def);
//else
@@ -1485,7 +1485,7 @@ void addNamespaceToGroups(Entry *root,NamespaceDef *nd)
for (;(g=gli.current());++gli)
{
GroupDef *gd=0;
- //printf("group `%s'\n",s->data());
+ //printf("group '%s'\n",s->data());
if (!g->groupname.isEmpty() && (gd=Doxygen::groupSDict->find(g->groupname)))
{
if (gd->addNamespace(nd)) nd->makePartOfGroup(gd);
@@ -1502,7 +1502,7 @@ void addDirToGroups(Entry *root,DirDef *dd)
for (;(g=gli.current());++gli)
{
GroupDef *gd=0;
- //printf("group `%s'\n",g->groupname.data());
+ //printf("group '%s'\n",g->groupname.data());
if (!g->groupname.isEmpty() && (gd=Doxygen::groupSDict->find(g->groupname)))
{
gd->addDir(dd);