aboutsummaryrefslogtreecommitdiffstats
path: root/generator
diff options
context:
space:
mode:
authorMarcelo Lira <marcelo.lira@openbossa.org>2011-07-16 11:55:13 -0300
committerHugo Parente Lima <hugo.pl@gmail.com>2012-03-08 16:17:02 -0300
commitb6fa93c405059cdf43ada7b6fc935462871abd09 (patch)
treee7a6553a9a3bc2e3c8b2a1081839e94047c392ea /generator
parent96bd943d57b1864d1f5e7359b100c67d01934619 (diff)
Replaced trailing space by a period in documentation comment.
Also removed other trailing space elsewhere and fixed some typos in the comments.
Diffstat (limited to 'generator')
-rw-r--r--generator/cppgenerator.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/generator/cppgenerator.cpp b/generator/cppgenerator.cpp
index 2e8285675..80e8cedfb 100644
--- a/generator/cppgenerator.cpp
+++ b/generator/cppgenerator.cpp
@@ -3233,7 +3233,7 @@ void CppGenerator::writeEnumInitialization(QTextStream& s, const AbstractMetaEnu
if (!cppEnum->isAnonymous()) {
- s << INDENT << "PyTypeObject* " << cpythonName << " = Shiboken::Enum::newTypeWithName(\"" << getClassTargetFullName(cppEnum) << "\", \""
+ s << INDENT << "PyTypeObject* " << cpythonName << " = Shiboken::Enum::newTypeWithName(\"" << getClassTargetFullName(cppEnum) << "\", \""
<< (cppEnum->enclosingClass() ? cppEnum->enclosingClass()->qualifiedCppName() + "::" : "") << cppEnum->name() << "\");" << endl;
if (cppEnum->typeEntry()->flags())