Converted gramps_main.py to a class, replace utils.py with Utils.py and

Config.py with GrampsCfg.py (for pychecker)


svn: r789
This commit is contained in:
Don Allingham
2002-02-22 03:55:32 +00:00
parent 8285071eee
commit d9c223deed
66 changed files with 2085 additions and 2513 deletions

View File

@@ -20,7 +20,7 @@
import TextDoc
import gtk
import Config
import GrampsCfg
from intl import gettext
_ = gettext
@@ -48,7 +48,7 @@ def make_paper_menu(main_menu):
menuitem.set_data("i",paper)
menuitem.show()
myMenu.append(menuitem)
if name == Config.paper_preference:
if name == GrampsCfg.paper_preference:
myMenu.set_active(index)
index = index + 1
main_menu.set_menu(myMenu)