Hello,

-------------------------------
from qt import *

app = QApplication([])
sv = QScrollView(None)
w = QWidget(sv.viewport())

print sv.viewport() is w.parent()
print sv.viewport(), w.parent()
print sv.viewport().width()
print w.parent().width()
-------------------------------

This outputs:

True
<qt.QWidget object at 0x00813690>
<qt.QObject object at 0x00813690>
949
Traceback (most recent call last):
  File "D:\Work\caligola3d\src\pyqtbug3.py", line 14, in ?
    print w.parent().width()
AttributeError: width

Notice that there are two different Python-side objects for the same C++
reference.
-- 
Giovanni Bajo

_______________________________________________
PyKDE mailing list    [email protected]
http://mats.imk.fraunhofer.de/mailman/listinfo/pykde

Reply via email to