On Wed, 8 Oct 2008 22:58:05 +0200, "Filip GruszczyĆski"
<[EMAIL PROTECTED]> wrote:
> When I run following code (of course with some implementation of tree
> objects):
>
> class QCategorizedItemModel(QAbstractItemModel):
>
> def __init__(self, tree):
> QAbstractItemModel.__init
When I run following code (of course with some implementation of tree objects):
class QCategorizedItemModel(QAbstractItemModel):
def __init__(self, tree):
QAbstractItemModel.__init__(self)
self.__root = tree
def root(self):