Am 25.07.2011 14:00, schrieb Archard Lias:
> def flags(self, index):
>     if not index.isValid():
>         return Qt.ItemIsEnabled
> 
>     return super(self.__class__, self).flags(index) |

Your use of super() is incorrect and will not work as you might expect.
You *must* use the class here, never self.__class__.

Christian

-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to