2008-01-10 Raphael Ackermann <raphael.ackermann@gmail.com>

* src/MarkupText.py: in _hex_to_color removed dupe assignment to color
    * src/PageView.py: doc typo and delete unused statements in filter_toggle
    * src/ViewManager.py: fix typo in doc
    * src/DataViews/PersonView.py: delete unused statements in filter_toggle
    * src/FilterEditor/_EditRule.py: fix wrong $Id name
    * src/FilterEditor/_ShowResults.py: fix wrong $Id name

svn: r9778
This commit is contained in:
Raphael Ackermann
2008-01-10 23:27:06 +00:00
parent abc7d85760
commit d28b01f4b0
7 changed files with 12 additions and 9 deletions

View File

@@ -724,7 +724,6 @@ class MarkupBuffer(gtk.TextBuffer):
def _hex_to_color(self, hex):
"""Convert hex string to gtk.gdk.Color."""
color = gtk.gdk.Color()
color = gtk.gdk.color_parse(hex)
return color