aboutsummaryrefslogtreecommitdiffstats
path: root/PySide/QtGui
diff options
context:
space:
mode:
authorLuciano Wolf <luciano.wolf@openbossa.org>2010-02-09 15:22:11 -0300
committerHugo Lima <hugo.lima@openbossa.org>2010-02-09 19:14:17 -0200
commita8be41f419d9f5e9c57fc0b1069b4b5ed68fbb0f (patch)
tree593db208084d0870bcb6399b7f932b63b82cf000 /PySide/QtGui
parent1e7c506e3d05412655be26f5fea1e8815ab6d4f4 (diff)
Fix warning about "remove argument" on QFontDialog methods.
Reviewed by Lauro Moura <lauro.neto@openbossa.org>
Diffstat (limited to 'PySide/QtGui')
-rw-r--r--PySide/QtGui/typesystem_gui_common.xml12
1 files changed, 9 insertions, 3 deletions
diff --git a/PySide/QtGui/typesystem_gui_common.xml b/PySide/QtGui/typesystem_gui_common.xml
index 1fe9d8a12..d2f5ac53a 100644
--- a/PySide/QtGui/typesystem_gui_common.xml
+++ b/PySide/QtGui/typesystem_gui_common.xml
@@ -1426,7 +1426,9 @@
<object-type name="QFontComboBox"/>
<object-type name="QFontDialog">
<modify-function signature="getFont(bool*,QWidget*)" allow-thread="yes">
- <modify-argument index="1" action="remove"/>
+ <modify-argument index="1">
+ <remove-argument />
+ </modify-argument>
<modify-argument index="return">
<replace-type modified-type="PyTuple" />
</modify-argument>
@@ -1435,7 +1437,9 @@
</inject-code>
</modify-function>
<modify-function signature="getFont(bool*,QFont,QWidget*)" allow-thread="yes">
- <modify-argument index="1" action="remove"/>
+ <modify-argument index="1">
+ <remove-argument />
+ </modify-argument>
<modify-argument index="return">
<replace-type modified-type="PyTuple" />
</modify-argument>
@@ -1444,7 +1448,9 @@
</inject-code>
</modify-function>
<modify-function signature="getFont(bool*,QFont,QWidget*,QString)" allow-thread="yes">
- <modify-argument index="1" action="remove"/>
+ <modify-argument index="1">
+ <remove-argument />
+ </modify-argument>
<modify-argument index="return">
<replace-type modified-type="PyTuple" />
</modify-argument>