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

reporegistry: no debug output on removeRows()

Changeset a5c491d32b8d

Parent 944352bcea6b

by Adrian Buehlmann

Changes to one file · Browse files at a5c491d32b8d Showing diff from parent 944352bcea6b Diff from another changeset...

 
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
 
320
321
322
 
323
324
325
326
327
328
 
 
 
 
 
 
329
330
331
@@ -320,19 +320,12 @@
  return Qt.MoveAction     def removeRows(self, row, count, parent): - print "removeRows(row=%s, count=%s)" % (row, count)   item = parent.internalPointer()   if item is None:   item = self.rootItem   self.beginRemoveRows(parent, row, row+count-1)   res = item.removeRows(row, count)   self.endRemoveRows() - - # dump everything for debug purposes - buf = QtCore.QByteArray() - writeXml(buf, self.rootItem, reporegistryXmlElementName) - print buf -   return res     def mimeTypes(self):