svn: r8961
This commit is contained in:
parent
f32dcb087a
commit
fd5bb08aa3
@ -1,3 +1,7 @@
|
|||||||
|
2007-09-08 Benny Malengier <benny.malengier@gramps-project.org>
|
||||||
|
* src/PageView.py : cleanup
|
||||||
|
* src/QuickReports.py: fix error getting source handle
|
||||||
|
|
||||||
2007-09-10 Don Allingham <don@gramps-project.org>
|
2007-09-10 Don Allingham <don@gramps-project.org>
|
||||||
* src/SubstKeywords.py (SubstKeywords.replace_and_clean): fix substitution
|
* src/SubstKeywords.py (SubstKeywords.replace_and_clean): fix substitution
|
||||||
* src/ImgManip.py: fix typo
|
* src/ImgManip.py: fix typo
|
||||||
|
@ -859,7 +859,7 @@ class ListView(BookMarkView):
|
|||||||
if menu and self.dbstate.active:
|
if menu and self.dbstate.active:
|
||||||
(ui, reportactions) = create_quickreport_menu(
|
(ui, reportactions) = create_quickreport_menu(
|
||||||
self.QR_CATEGORY,
|
self.QR_CATEGORY,
|
||||||
self.dbstate,
|
self.dbstate,
|
||||||
self.first_selected())
|
self.first_selected())
|
||||||
if len(reportactions) > 1 :
|
if len(reportactions) > 1 :
|
||||||
qr_menu = gtk.Menu()
|
qr_menu = gtk.Menu()
|
||||||
|
@ -123,7 +123,7 @@ def run_report(dbstate, category,handle,func):
|
|||||||
elif category == CATEGORY_QR_EVENT :
|
elif category == CATEGORY_QR_EVENT :
|
||||||
obj = dbstate.db.get_event_from_handle(handle)
|
obj = dbstate.db.get_event_from_handle(handle)
|
||||||
elif category == CATEGORY_QR_SOURCE :
|
elif category == CATEGORY_QR_SOURCE :
|
||||||
obj = self.dbstate.db.get_source_from_handle(handle)
|
obj = dbstate.db.get_source_from_handle(handle)
|
||||||
elif category == CATEGORY_QR_PLACE :
|
elif category == CATEGORY_QR_PLACE :
|
||||||
obj = dbstate.db.get_place_from_handle(handle)
|
obj = dbstate.db.get_place_from_handle(handle)
|
||||||
elif category == CATEGORY_QR_REPOSITORY :
|
elif category == CATEGORY_QR_REPOSITORY :
|
||||||
|
Loading…
Reference in New Issue
Block a user