aboutsummaryrefslogtreecommitdiffstats
path: root/cppgenerator.h
diff options
context:
space:
mode:
authorMarcelo Lira <marcelo.lira@openbossa.org>2010-02-11 12:37:20 -0300
committerMarcelo Lira <marcelo.lira@openbossa.org>2010-02-11 12:43:00 -0300
commit973de3370cc5c97531faf5cf57f5cb58d951bda0 (patch)
treec87599478c8c4f3d9d6aa167d577d36bafdde3ca /cppgenerator.h
parent03c865ebe0222f09099344dc3d08d1c54349080c (diff)
Fixes problem with CppGenerator::writeTypeCheck due to a bad rebasing.
Reviewed by Renato Araújo <renato.filho@openbossa.org>
Diffstat (limited to 'cppgenerator.h')
-rw-r--r--cppgenerator.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/cppgenerator.h b/cppgenerator.h
index 7652719a9..7ed0ee5e5 100644
--- a/cppgenerator.h
+++ b/cppgenerator.h
@@ -65,7 +65,7 @@ private:
* \param type the TypeEntry passed when the validity check must confirm the type of the Python wrapper to be checked
*/
void writeInvalidCppObjectCheck(QTextStream& s, QString pyArgName = "self", const TypeEntry* type = 0);
- void writeTypeCheck(QTextStream& s, const AbstractMetaType* argType, QString argumentName, QString customCheck = "");
+ void writeTypeCheck(QTextStream& s, const AbstractMetaType* argType, QString argumentName, bool isNumber = false, QString customType = "");
void writeTypeCheck(QTextStream& s, const OverloadData* overloadData, QString argumentName);
void writeTypeConverterImpl(QTextStream& s, const TypeEntry* type);