* src/Marriage.py: fix lds_data_object problem

svn: r5098
This commit is contained in:
Don Allingham 2005-08-17 22:01:15 +00:00
parent 9d1cb02e41
commit 04afb37165
5 changed files with 3 additions and 30 deletions

View File

@ -1,4 +1,5 @@
2005-08-17 Don Allingham <don@gramps-project.org>
* src/Marriage.py: fix lds_data_object problem
* src/GrampsDBCallback.py: look for GRAMPS_SIGNAL environment
variable equal to 1 to enable signal debugging
* src/ChooseParents.py: disconnect signals on close, do fewer

View File

@ -24,11 +24,6 @@
<title>Known Bugs and Limitations</title>
<para>The bugs are tracked through the
<ulink url="http://sourceforge.net/tracker/?group_id=25770&amp;atid=385137" type="http">
sourceforge.net tracking system</ulink>.
</para>
<para>The known limitations include the BSDDB performance issues related
to caching and the memory size. As long as the BSDDB cache fits completely
into the available memory on the system, the performance should be

View File

@ -289,18 +289,6 @@ The best thing you can do is to fix the bug and send the patch to
<ulink url="mailto:gramps-devel@lists.sf.net"
type="mailto">gramps-devel@lists.sf.net</ulink> :-)</para>
<para>
The next best thing would be to submit a good bug report. This can be done in
one of the two ways: (1) send your report to
<ulink url="mailto:gramps-bugs@lists.sf.net"
type="mailto">gramps-bugs@lists.sf.net</ulink>
or (2) file your report with the bug tracker system at
<ulink url="http://sf.net/tracker/?group_id=25770" type="http">
http://sf.net/tracker/?group_id=25770&amp;atid=385137</ulink>
(this function is also available by selecting
<menuchoice><guisubmenu>Help</guisubmenu><guimenuitem>Report a
bug</guimenuitem></menuchoice> from gramps main menu). </para>
<para>A good bug report would include: </para>
<itemizedlist>

View File

@ -226,17 +226,6 @@
<releaseinfo>This manual describes version &appversion; of GRAMPS.
</releaseinfo>
<legalnotice>
<title>Feedback</title>
<para>
To report a bug or make a suggestion regarding this application or
this manual, use the help menu in &app;, or follow the directions
found on <ulink url="http://gramps-project.org/index.php?module=pagemaster&amp;PAGE_user_op=view_page&amp;PAGE_id=3"
type="http">this site</ulink>.
</para>
<!-- Translators may also add here feedback address for translations -->
</legalnotice>
</bookinfo>
<!-- ============= Document Body ============================= -->

View File

@ -244,7 +244,9 @@ class Marriage:
AutoComp.fill_combo(self.lds_place, place_list)
lds_ord = self.family.get_lds_sealing()
self.seal_stat = 0
self.lds_date_object = Date.Date()
if GrampsKeys.get_uselds() or lds_ord:
if lds_ord:
place_handle = lds_ord.get_place_handle()
@ -257,8 +259,6 @@ class Marriage:
self.lds_date_object = lds_ord.get_date_object()
else:
self.lds_place.child.set_text("")
self.seal_stat = 0
self.lds_date_object = Date.Date()
self.lds_label.show()
self.get_widget('lds_page').show()
else: