Yep, it is, but I'll describe you the situation.
the concerning class inherits from QAbstractGraphicsShapeItem. This class only requires implementation of the boundingRect() and paint(). I haven't implemented the 'type()' function here, so it'll call its base class type() function. QAbstractGraphicsShapeItem inherits QGraphicsItem and calls its type() function returning 65536.
I used 65536 as offset of my custom items, so my items are
65536 + 0 --> equal to QGraphicsItem
65536 + 1
65536 + 2
...
This is where it goes wrong. I think you shouldn't use 65536, but only values greater than it. I increased the offset with 1 and now the issue is gone.
Therefore my opinion is that the Qt Assistant is wrong...
Bookmarks