diff options
author | Hugo Parente Lima <hugo.pl@gmail.com> | 2010-12-20 11:18:42 -0200 |
---|---|---|
committer | Hugo Parente Lima <hugo.pl@gmail.com> | 2010-12-20 11:18:42 -0200 |
commit | 499ef3bbb4ef8429ac1fb7505318ca7d066c06e5 (patch) | |
tree | c7f4357d856af7ff3502b211512696618f18f434 | |
parent | 8545117cff205d6664e6f3ddddd43dd9cb23cf60 (diff) | |
download | pyside-499ef3bbb4ef8429ac1fb7505318ca7d066c06e5.tar.gz pyside-499ef3bbb4ef8429ac1fb7505318ca7d066c06e5.tar.xz pyside-499ef3bbb4ef8429ac1fb7505318ca7d066c06e5.zip |
Fix bug#558 - "print attribute of a QWebFrame cannot be accessed normally"
-rw-r--r-- | PySide/QtGui/typesystem_gui_common.xml | 2 | ||||
-rw-r--r-- | PySide/QtWebKit/typesystem_webkit.xml | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/PySide/QtGui/typesystem_gui_common.xml b/PySide/QtGui/typesystem_gui_common.xml index cf8f273..c27c4a0 100644 --- a/PySide/QtGui/typesystem_gui_common.xml +++ b/PySide/QtGui/typesystem_gui_common.xml @@ -4909,11 +4909,13 @@ <parent index="this" action="add"/> </modify-argument> </modify-function> + <modify-function signature="print(QPrinter*)const" rename="print_" /> </object-type> <object-type name="QPrintPreviewDialog"/> <object-type name="QPrintPreviewWidget"> <enum-type name="ViewMode"/> <enum-type name="ZoomMode"/> + <modify-function signature="print()" rename="print_" /> </object-type> <object-type name="QStyledItemDelegate"> <modify-function signature="setItemEditorFactory(QItemEditorFactory*)"> diff --git a/PySide/QtWebKit/typesystem_webkit.xml b/PySide/QtWebKit/typesystem_webkit.xml index da709a4..d6fc9a7 100644 --- a/PySide/QtWebKit/typesystem_webkit.xml +++ b/PySide/QtWebKit/typesystem_webkit.xml @@ -53,6 +53,7 @@ <parent index="this" action="add"/> </modify-argument> </modify-function> + <modify-function signature="print(QPrinter*)const" rename="print_" /> <!-- TODO QMultiMap isn't implemented yet --> <modify-function signature="metaData()const" remove="all" /> </object-type> |