aboutsummaryrefslogtreecommitdiffstats
path: root/cppgenerator.cpp
diff options
context:
space:
mode:
authorHugo Lima <hugo.lima@openbossa.org>2010-02-25 18:25:01 -0300
committerHugo Lima <hugo.lima@openbossa.org>2010-02-26 14:25:57 -0300
commitf1427d101d4d0d73070f250d598d7fdc64ff2b52 (patch)
tree7c56921391b4d9597c563a1bf5509e957bf14428 /cppgenerator.cpp
parent3a184c23994189a24cb7f65dd413d32ea373929c (diff)
Rename init_shiboken to InitShiboken, to follow our naming convention.
Diffstat (limited to 'cppgenerator.cpp')
-rw-r--r--cppgenerator.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/cppgenerator.cpp b/cppgenerator.cpp
index bd3c21993..948ee3bfa 100644
--- a/cppgenerator.cpp
+++ b/cppgenerator.cpp
@@ -1,7 +1,7 @@
/*
* This file is part of the Shiboken Python Bindings Generator project.
*
- * Copyright (C) 2009 Nokia Corporation and/or its subsidiary(-ies).
+ * Copyright (C) 2009-2010 Nokia Corporation and/or its subsidiary(-ies).
*
* Contact: PySide team <contact@pyside.org>
*
@@ -2831,7 +2831,7 @@ void CppGenerator::finishGeneration()
s << INDENT << "}" << endl << endl;
}
- s << INDENT << "Shiboken::init_shiboken();" << endl;
+ s << INDENT << "Shiboken::initShiboken();" << endl;
s << INDENT << "PyObject* module = Py_InitModule(\"" << moduleName() << "\", ";
s << moduleName() << "_methods);" << endl << endl;