pychecker fixes, GEDCOM import/export improvements, calendar improvements

svn: r1250
This commit is contained in:
Don Allingham
2003-01-10 05:21:32 +00:00
parent 711323177a
commit 7f514dac82
48 changed files with 489 additions and 480 deletions

View File

@@ -36,13 +36,11 @@ import gtk.gdk
# Gramps modules
#
#-------------------------------------------------------------------------
from RelLib import *
from QuestionDialog import QuestionDialog, ErrorDialog
import RelLib
import EditPlace
import Utils
import GrampsCfg
from QuestionDialog import QuestionDialog, ErrorDialog
from intl import gettext as _
_column_headers = [
@@ -147,6 +145,7 @@ class PlaceView:
if mlist:
EditPlace.EditPlace(self,mlist[0],self.update_display)
return 1
return 0
def new_place_after_edit(self,place):
self.db.addPlace(place)
@@ -158,7 +157,7 @@ class PlaceView:
self.update(0)
def on_add_place_clicked(self,obj):
EditPlace.EditPlace(self,Place(),self.new_place_after_edit)
EditPlace.EditPlace(self,RelLib.Place(),self.new_place_after_edit)
def on_delete_clicked(self,obj):
mlist = []