summaryrefslogtreecommitdiffstats
path: root/src/classdef.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/classdef.cpp')
-rw-r--r--src/classdef.cpp24
1 files changed, 12 insertions, 12 deletions
diff --git a/src/classdef.cpp b/src/classdef.cpp
index 3a680c5..d528848 100644
--- a/src/classdef.cpp
+++ b/src/classdef.cpp
@@ -3450,7 +3450,7 @@ bool ClassDefImpl::hasNonReferenceSuperClass() const
void ClassDefImpl::writeDeclaration(OutputList &ol,const MemberDef *md,bool inGroup,
const ClassDef *inheritedFrom,const char *inheritId) const
{
- //printf("ClassName=`%s' inGroup=%d\n",name().data(),inGroup);
+ //printf("ClassName='%s' inGroup=%d\n",name().data(),inGroup);
ol.docify(compoundTypeString());
QCString cn = displayName(FALSE);
@@ -3564,8 +3564,8 @@ bool ClassDefImpl::hasDocumentation() const
//----------------------------------------------------------------------
// recursive function:
-// returns TRUE iff class definition `bcd' represents an (in)direct base
-// class of class definition `cd'.
+// returns TRUE iff class definition 'bcd' represents an (in)direct base
+// class of class definition 'cd'.
bool ClassDefImpl::isBaseClass(const ClassDef *bcd, bool followInstances,int level) const
{
@@ -3630,7 +3630,7 @@ static bool isStandardFunc(MemberDef *md)
}
/*!
- * recursively merges the `all members' lists of a class base
+ * recursively merges the 'all members' lists of a class base
* with that of this class. Must only be called for classes without
* subclasses!
*/
@@ -3775,7 +3775,7 @@ void ClassDefImpl::mergeMembers()
{
if (!isStandardFunc(srcMd))
{
- //printf(" insertMember `%s'\n",srcMd->name().data());
+ //printf(" insertMember '%s'\n",srcMd->name().data());
internalInsertMember(srcMd,prot,FALSE);
}
}
@@ -3852,7 +3852,7 @@ void ClassDefImpl::mergeMembers()
{
if (!isStandardFunc(mi->memberDef))
{
- //printf(" insertMember `%s'\n",mi->memberDef->name().data());
+ //printf(" insertMember '%s'\n",mi->memberDef->name().data());
internalInsertMember(mi->memberDef,prot,FALSE);
}
}
@@ -4113,7 +4113,7 @@ void ClassDefImpl::determineImplUsageRelation()
if (md->isVariable()) // for each member variable in this class
{
QCString type=removeRedundantWhiteSpace(md->typeString());
- //printf("in class %s found var type=`%s' name=`%s'\n",
+ //printf("in class %s found var type='%s' name='%s'\n",
// name().data(),type.data(),md->name().data());
int pos=0;
QCString usedClassName;
@@ -4121,7 +4121,7 @@ void ClassDefImpl::determineImplUsageRelation()
bool found=FALSE;
while (extractClassNameFromType(type,pos,usedClassName,templSpec)!=-1 && !found)
{
- //printf("usedClassName=`%s' templSpec=%s\n",usedClassName.data(),templSpec.data());
+ //printf("usedClassName='%s' templSpec=%s\n",usedClassName.data(),templSpec.data());
// check if usedClassName is a template argument of its class
ClassDef *cd=md->getClassDef();
if (cd && cd->templateArguments())
@@ -4233,11 +4233,11 @@ void ClassDefImpl::addUsedInterfaceClasses(MemberDef *md,const char *typeStr)
{
ucd = new UsesClassDef(cd);
m_impl->usesIntfClassDict->insert(cd->name(),ucd);
- //printf("in class `%s' adding used intf class `%s'\n",
+ //printf("in class '%s' adding used intf class '%s'\n",
// name().data(),cd->name().data());
}
ucd->addAccessor(md->name());
- //printf("in class `%s' adding accessor `%s' to class `%s'\n",
+ //printf("in class '%s' adding accessor '%s' to class '%s'\n",
// name().data(),md->name().data(),ucd->classDef->name().data());
}
p=i+l;
@@ -4476,7 +4476,7 @@ ClassDef *ClassDefImpl::insertTemplateInstance(const QCString &fileName,
ClassDef *templateClass=m_impl->templateInstances->find(templSpec);
if (templateClass==0)
{
- Debug::print(Debug::Classes,0," New template instance class `%s'`%s'\n",qPrint(name()),qPrint(templSpec));
+ Debug::print(Debug::Classes,0," New template instance class '%s''%s'\n",qPrint(name()),qPrint(templSpec));
QCString tcname = removeRedundantWhiteSpace(localName()+templSpec);
templateClass = new ClassDefImpl(
fileName,startLine,startColumn,tcname,ClassDef::Class);
@@ -4499,7 +4499,7 @@ ClassDef *ClassDefImpl::getVariableInstance(const char *templSpec) const
ClassDef *templateClass=m_impl->variableInstances->find(templSpec);
if (templateClass==0)
{
- Debug::print(Debug::Classes,0," New template variable instance class `%s'`%s'\n",qPrint(name()),qPrint(templSpec));
+ Debug::print(Debug::Classes,0," New template variable instance class '%s' '%s'\n",qPrint(name()),qPrint(templSpec));
QCString tcname = removeRedundantWhiteSpace(name()+templSpec);
templateClass = new ClassDefImpl("<code>",1,1,tcname,
ClassDef::Class,0,0,FALSE);