* src/ArgHandler.py: Convert to new gconf usage.

* src/Report.py: Convert to new gconf usage.


svn: r3275
This commit is contained in:
Alex Roitman
2004-07-15 02:55:22 +00:00
parent e776ef23bf
commit b49494c697
3 changed files with 7 additions and 5 deletions

View File

@@ -283,8 +283,8 @@ class ArgHandler:
if self.imports:
self.parent.import_tool_callback()
elif GrampsCfg.lastfile and GrampsCfg.autoload:
if self.parent.auto_save_load(GrampsCfg.lastfile) == 0:
elif GrampsCfg.get_lastfile() and GrampsCfg.get_autoload():
if self.parent.auto_save_load(GrampsCfg.get_lastfile()) == 0:
DbPrompter.DbPrompter(self.parent,0)
else:
DbPrompter.DbPrompter(self.parent,0)