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 177 - Can't find type resolver for 19QTextDocumentLayout
: Can't find type resolver for 19QTextDocumentLayout
Status: CLOSED INVALID
Product: PySide
Classification: Unclassified
Component: Shiboken
: HEAD
: All All
: P5 normal
Assigned To: Marcelo Lira
:
:
:
  Show dependency treegraph
 
Reported: 2010-02-28 14:28 EET by Carlos Gonçalves
Modified: 2010-03-17 19:00 EET (History)
6 users (show)

See Also:


Attachments
QTextDocument::documentLayout () (469 bytes, text/plain)
2010-02-28 14:29 EET, Carlos Gonçalves
Details

Note You need to log in before you can comment on or make changes to this bug.
Description Carlos Gonçalves 2010-02-28 14:28:13 EET
The attached test file outputs:

> python qtextdocument_documentlayout_test.py 
[static Shiboken::TypeResolver* Shiboken::TypeResolver::get(const char*)] Can't
find type resolver for 19QTextDocumentLayout
<type 'PySide.QtGui.QAbstractTextDocumentLayout'>

Noticed when running pyside-examples/examples/richtext/textobject/textobject.py
Comment 1 Carlos Gonçalves 2010-02-28 14:29:03 EET
Created attachment 36 [details]
QTextDocument::documentLayout ()
Comment 2 Lauro Moura 2010-03-11 18:37:06 EET
The message is enabled when shiboken (generator) is compiled in Debug mode.

QTextDocumentLayout is a privated class that inherits
QAbstractTextDocumentLayout, the public class. The same would happen in C++,
where you'd only have a base class pointer.