* src/GrampsIniKeys.py: provide support for the default schema
* src/GrampsKeys.py: select appropriate backend * various: switch from GrampsGconfKeys to GrampsKeys for normal usage * src/GrampsIniKeys.py: Alternate backend using .ini files instead of gconf svn: r3873
This commit is contained in:
@ -46,7 +46,7 @@ import ReadXML
|
||||
import GrampsMime
|
||||
import DbPrompter
|
||||
import QuestionDialog
|
||||
import GrampsGconfKeys
|
||||
import GrampsKeys
|
||||
import RecentFiles
|
||||
import PluginMgr
|
||||
import Report
|
||||
@ -324,8 +324,8 @@ class ArgHandler:
|
||||
|
||||
if self.imports:
|
||||
self.parent.import_tool_callback()
|
||||
elif GrampsGconfKeys.get_lastfile() and GrampsGconfKeys.get_autoload():
|
||||
if self.auto_save_load(GrampsGconfKeys.get_lastfile()) == 0:
|
||||
elif GrampsKeys.get_lastfile() and GrampsKeys.get_autoload():
|
||||
if self.auto_save_load(GrampsKeys.get_lastfile()) == 0:
|
||||
DbPrompter.DbPrompter(self.parent,0)
|
||||
else:
|
||||
DbPrompter.DbPrompter(self.parent,0)
|
||||
|
Reference in New Issue
Block a user