Plugins/VcsPlugins/vcsPySvn/SvnBlameDialog.py

changeset 176
ff52b55a90fb
parent 96
9624a110667d
child 424
d0915392cbd7
child 792
a13346916170
diff -r c55cab724965 -r ff52b55a90fb Plugins/VcsPlugins/vcsPySvn/SvnBlameDialog.py
--- a/Plugins/VcsPlugins/vcsPySvn/SvnBlameDialog.py	Sat Apr 10 17:40:43 2010 +0000
+++ b/Plugins/VcsPlugins/vcsPySvn/SvnBlameDialog.py	Sun Apr 11 11:46:28 2010 +0000
@@ -110,16 +110,15 @@
         Private method to resize the list columns.
         """
         self.blameList.header().resizeSections(QHeaderView.ResizeToContents)
-        self.blameList.header().setStretchLastSection(True)
         
     def __generateItem(self, revision, author, lineno, 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 (integer)
-        @param author author of the tag (string)
-        @param lineno line number (integer)
-        @param text text of the line (string)
+        @param revision revision string (string)
+        @param author author of the change (string)
+        @param lineno linenumber (string)
+        @param text line of text from the annotated file (string)
         """
         itm = QTreeWidgetItem(self.blameList, 
             ["%d" % revision, author, "%d" % lineno, text])

eric ide

mercurial