PySide Bugzilla Closed for New Bugs

PySide is now a Qt Add-on and uses the Qt Project's JIRA Bug Tracker instead of this Bugzilla instance. This Bugzilla is left for reference purposes.

Bug 165 - NotImplementedError: pure virtual method 'QAbstractPrintDialog.exec_()' not implemented.
: NotImplementedError: pure virtual method 'QAbstractPrintDialog.exec_()' not i...
Status: CLOSED FIXED
Product: PySide
Classification: Unclassified
Component: PySide
: 0.2.3
: All All
: P5 normal
Assigned To: renato filho
:
:
:
  Show dependency treegraph
 
Reported: 2010-02-23 15:03 EET by Anderson Lizardo
Modified: 2010-03-24 14:41 EET (History)
7 users (show)

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Anderson Lizardo 2010-02-23 15:03:35 EET
This code:

from PySide.QtGui import QPrintDialog, QPrinter, QApplication
a = QApplication([])
p = QPrinter()
d = QPrintDialog(p); d.exec_()

Currently fails with this error:

Traceback (most recent call last):
  File "<string>", line 1, in <module>
NotImplementedError: pure virtual method 'QAbstractPrintDialog.exec_()' not
implemented.

This comes from the examples/richtext/orderform.py example (when clicking on
the "print" menu item).
Comment 1 Anderson Lizardo 2010-02-24 10:40:40 EET
Fixed on commit 30bc9ff03841fe4866d6faa18fa6623902c4dd59  (pyside-shiboken)