* src/plugins/WriteGedcom.py (write_sources): Remove CallNumber export.

svn: r2476
This commit is contained in:
Alex Roitman 2003-12-09 04:24:52 +00:00
parent 72b7cd0801
commit bac1ce2bc6
2 changed files with 1 additions and 2 deletions

View File

@ -35,6 +35,7 @@
* src/GrampsParser.py (GrampsParser.stop_scallno): Remove function.
* src/gramps.glade (sourceEditor): Remove Call Number widgets.
* src/EditSource.py: Remove Call Number support.
* src/plugins/WriteGedcom.py (write_sources): Remove CallNumber export.
2003-12-07 Alex Roitman <shura@alex.neuro.umn.edu>
* src/filters/Complete.py: Add filter matching people with the

View File

@ -777,8 +777,6 @@ class GedcomWriter:
self.writeln("1 PUBL %s" % self.cnvtxt(source.getPubInfo()))
if source.getAbbrev():
self.writeln("1 ABBR %s" % self.cnvtxt(source.getAbbrev()))
if source.getCallNumber():
self.writeln("1 CALN %s" % self.cnvtxt(source.getCallNumber()))
if source.getNote():
self.write_long_text("NOTE",1,self.cnvtxt(source.getNote()))
index = index + 1