Plugins/VcsPlugins/vcsSubversion/SvnBlameDialog.py

changeset 176
ff52b55a90fb
parent 96
9624a110667d
child 425
ca5e65413fc5
child 792
a13346916170
--- a/Plugins/VcsPlugins/vcsSubversion/SvnBlameDialog.py	Sat Apr 10 17:40:43 2010 +0000
+++ b/Plugins/VcsPlugins/vcsSubversion/SvnBlameDialog.py	Sun Apr 11 11:46:28 2010 +0000
@@ -148,16 +148,14 @@
         Private method to resize the list columns.
         """
         self.blameList.header().resizeSections(QHeaderView.ResizeToContents)
-        self.blameList.header().setStretchLastSection(True)
         
     def __generateItem(self, revision, author, text):
         """
-        Private method to generate a tag item in the taglist.
+        Private method to generate a blame item in the blame list.
         
         @param revision revision string (string)
-        @param author author of the tag (string)
-        @param date date of the tag (string)
-        @param name name (path) of the tag (string)
+        @param author author of the change (string)
+        @param text line of text from the annotated file (string)
         """
         itm = QTreeWidgetItem(self.blameList, 
             [revision, author, "%d" % self.lineno, text])

eric ide

mercurial