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

reporegistry: reduce debug output on DnD

Changeset a5f20106055b

Parent a5c491d32b8d

by Adrian Buehlmann

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

 
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
 
348
349
350
351
352
353
354
355
356
 
332
333
334
 
335
336
337
338
 
339
340
341
342
343
 
 
344
345
346
347
348
 
 
349
350
351
@@ -332,25 +332,20 @@
  return QtCore.QStringList(repoRegMimeType)     def mimeData(self, indexes): - print "mimeData()"   i = indexes[0]   item = i.internalPointer()   buf = QtCore.QByteArray()   writeXml(buf, item, extractXmlElementName) - print str(buf)   d = QtCore.QMimeData()   d.setData(repoRegMimeType, buf)   return d     def dropMimeData(self, data, action, row, column, parent): - print "dropMimeData()" - print "action = %s" % action + print "dropMimeData(action=%s)" % action   print "formats:"   for s in data.formats():   print s   d = str(data.data(repoRegMimeType)) - print "d = %s" % d -   itemread = readXml(d, extractXmlElementName)     group = parent.internalPointer()