Kiln » TortoiseHg » TortoiseHg
Clone URL:  
Pushed to one repository · View In Graph Contained in 1.9, 1.9.1, and 1.9.2

htmllistview: use proper super class for initializer

Changeset b51e01b84fbf

Parent f34584e97aea

by Steve Borho

Changes to one file · Browse files at b51e01b84fbf Showing diff from parent f34584e97aea Diff from another changeset...

 
87
88
89
90
 
91
92
93
 
87
88
89
 
90
91
92
93
@@ -87,7 +87,7 @@
   class HTMLDelegate(QStyledItemDelegate):   def __init__(self, parent=0): - QItemDelegate.__init__(self, parent) + QStyledItemDelegate.__init__(self, parent)     def paint(self, painter, option, index):   text = index.model().data(index, Qt.DisplayRole).toString()