aboutsummaryrefslogtreecommitdiffstats
path: root/headergenerator.cpp
diff options
context:
space:
mode:
authorMarcelo Lira <marcelo.lira@openbossa.org>2009-12-11 14:40:21 -0300
committerMarcelo Lira <marcelo.lira@openbossa.org>2009-12-11 14:40:30 -0300
commit0f31a28bcb0d802f461fd2012dd2a239decb81b0 (patch)
tree79523ebbf47d445fd6b90b98e31c3fdbcba959ac /headergenerator.cpp
parent88dc53b65f0fa7d6dc918198d7800501861ea3ac (diff)
Renamed ShiboTypeObject to SbkBaseWrapperType to clearify its relationship with SbkBaseWrapper.
Diffstat (limited to 'headergenerator.cpp')
-rw-r--r--headergenerator.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/headergenerator.cpp b/headergenerator.cpp
index f81693e8f..b13fb2bf1 100644
--- a/headergenerator.cpp
+++ b/headergenerator.cpp
@@ -132,7 +132,7 @@ void HeaderGenerator::writeTypeCheckMacro(QTextStream& s, const TypeEntry* type)
QString checkFunction = cpythonCheckFunction(type);
s << getApiExportMacro() << " PyAPI_DATA(";
if (type->isObject() || type->isValue())
- s << "Shiboken::ShiboTypeObject";
+ s << "Shiboken::SbkBaseWrapperType";
else
s << "PyTypeObject";
s << ") " << pyTypeName << ';' << endl;