aboutsummaryrefslogtreecommitdiffstats
path: root/PySide/typesystem_templates.xml
diff options
context:
space:
mode:
authorLuciano Wolf <luciano.wolf@openbossa.org>2010-02-08 15:49:31 -0300
committerHugo Lima <hugo.lima@openbossa.org>2010-02-08 16:20:09 -0200
commit7fdbf2e9f2aa0202b6acdee4dcf6f7f24be6314c (patch)
tree090e55b56f268e129ec588fcc2b4f348bf57197b /PySide/typesystem_templates.xml
parentdff79b35f2724c3cda16b0a6500508a8a8a34316 (diff)
Fix TODO's for QFontDialog.getFont(...) methods.
Reviewed by Renato Araújo <renato.filho@openbossa.org>
Diffstat (limited to 'PySide/typesystem_templates.xml')
-rw-r--r--PySide/typesystem_templates.xml10
1 files changed, 10 insertions, 0 deletions
diff --git a/PySide/typesystem_templates.xml b/PySide/typesystem_templates.xml
index 03a220326..0460d340b 100644
--- a/PySide/typesystem_templates.xml
+++ b/PySide/typesystem_templates.xml
@@ -21,6 +21,16 @@
%RETURN_TYPE retval_ = %CPPSELF.%FUNCTION_NAME(&amp;ok_, %2);
%PYARG_0 = Shiboken::makeTuple(retval_, ok_);
</template>
+ <template name="fix_bool*,arg,arg">
+ bool ok_;
+ %RETURN_TYPE retval_ = %CPPSELF.%FUNCTION_NAME(&amp;ok_, %2, %3);
+ %PYARG_0 = Shiboken::makeTuple(retval_, ok_);
+ </template>
+ <template name="fix_bool*,arg,arg,arg">
+ bool ok_;
+ %RETURN_TYPE retval_ = %CPPSELF.%FUNCTION_NAME(&amp;ok_, %2, %3, %4);
+ %PYARG_0 = Shiboken::makeTuple(retval_, ok_);
+ </template>
<template name="fix_arg,arg,arg,arg,arg,arg,arg,bool*,arg">
bool ok_;
%RETURN_TYPE retval_ = %CPPSELF.%FUNCTION_NAME(%1, %2, %3, %4, %5, %6, %7, &amp;ok_, %9);