fix number of arguments on some editors, complete version bumping on plugins, temp work around on repository details gramplet; see http://sourceforge.net/mailarchive/message.php?msg_id=29521703

svn: r20067
This commit is contained in:
Jérôme Rapinat 2012-07-24 18:43:24 +00:00
parent 43e7edd99f
commit a404c93276
5 changed files with 6 additions and 6 deletions

View File

@ -226,7 +226,7 @@ class EditMedia(EditPrimary):
self._setup_notebook_tabs( notebook)
notebook.show_all()
self.glade.get_object('vbox').pack_start(notebook, True)
self.glade.get_object('vbox').pack_start(notebook, True, True, 0)
def build_menu_names(self, person):
return (_('Edit Media Object'), self.get_menu_title())

View File

@ -170,7 +170,7 @@ class EditSource(EditPrimary):
self._setup_notebook_tabs(notebook)
notebook.show_all()
self.glade.get_object('vbox').pack_start(notebook, True)
self.glade.get_object('vbox').pack_start(notebook, True, True, 0)
def build_menu_names(self, source):
return (_('Edit Source'), self.get_menu_title())

View File

@ -31,7 +31,7 @@ id = 'book',
name = _("Book Report"),
description = _("Produces a book containing several reports."),
version = '1.0',
gramps_target_version = '3.5',
gramps_target_version = '4.0',
status = STABLE,
fname = 'bookreport.py',
authors = ["Alex Roitman"],

View File

@ -45,7 +45,7 @@ class RepositoryDetails(Gramplet):
self.name.modify_font(Pango.FontDescription('sans bold 12'))
vbox.pack_start(self.name, fill=True, expand=False, padding=7)
self.table = Gtk.Table(1, 2)
vbox.pack_start(self.table, fill=True, expand=False)
vbox.pack_start(self.table, fill=True, expand=False, '')
self.top.pack_start(vbox, fill=True, expand=False, padding=10)
self.top.show_all()
return self.top

View File

@ -32,7 +32,7 @@ id = 'records',
name = _("Records Report"),
description = _("Shows some interesting records about people and families"),
version = '1.1',
gramps_target_version = '3.5',
gramps_target_version = '4.0',
status = STABLE,
fname = 'records.py',
authors = [u"Reinhard Müller"],
@ -48,7 +48,7 @@ id = 'Records Gramplet',
name = _("Records Gramplet"),
description = _("Shows some interesting records about people and families"),
version = '1.0',
gramps_target_version = '3.5',
gramps_target_version = '4.0',
status = STABLE,
fname = 'records.py',
authors = [u"Reinhard Müller"],