* src/plugins/GraphViz.py: Remove bogus UI labels.
svn: r3921
This commit is contained in:
parent
7b1c41a611
commit
ece2cf7d42
@ -1,6 +1,8 @@
|
||||
2005-01-17 Martin Hawlisch <Martin.Hawlisch@gmx.de>
|
||||
* src/ReadGedcom.py: Handle missing TRLR record.
|
||||
|
||||
* src/plugins/GraphViz.py: Remove bogus UI labels.
|
||||
|
||||
2005-01-16 Alex Roitman <shura@alex.neuro.umn.edu>
|
||||
* src/Plugins.py (reload_plugins): Check for status.
|
||||
* src/Report.py: pychecker fixes
|
||||
|
@ -750,7 +750,7 @@ class FormatComboBox(gtk.ComboBox):
|
||||
return '.dot'
|
||||
|
||||
def get_printable(self):
|
||||
return _("Generate print output")
|
||||
return None
|
||||
|
||||
def get_clname(self):
|
||||
return 'dot'
|
||||
@ -794,7 +794,7 @@ class GraphicsFormatComboBox(gtk.ComboBox):
|
||||
return _formats[self.get_active()][1]
|
||||
|
||||
def get_printable(self):
|
||||
return _("Generate print output")
|
||||
return None
|
||||
|
||||
def get_clname(self):
|
||||
return 'print'
|
||||
@ -850,7 +850,7 @@ class GraphVizGraphics(Report.Report):
|
||||
GraphViz(self.database,self.start_person,self.options_class)
|
||||
|
||||
def end_report(self):
|
||||
os.system('dot -T%s -o %s %s ; rm %s' %
|
||||
os.system('dot -T%s -o%s %s ; rm %s' %
|
||||
(self.the_format,self.user_output,
|
||||
self.junk_output,self.junk_output))
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user