2007-07-07 Don Allingham <don@gramps-project.org>
* src/PageView.py (ListView.column_clicked): set the search column for list views to be the sort column * src/DataViews/_EventView.py: add docs * src/DataViews/_FamilyList.py: add docs * src/DataViews/_NoteView.py: remove unused double_click * src/GrampsDb/_GrampsDbBase.py: fix __ on functions * src/ColumnOrder.py: fix __ on functions svn: r8705
This commit is contained in:
@ -77,7 +77,7 @@ class ColumnOrder(ManagedWindow.ManagedWindow):
|
||||
self.tree.set_model(self.model)
|
||||
|
||||
checkbox = gtk.CellRendererToggle()
|
||||
checkbox.connect('toggled', __toggled, self.model)
|
||||
checkbox.connect('toggled', toggled, self.model)
|
||||
renderer = gtk.CellRendererText()
|
||||
|
||||
column_n = gtk.TreeViewColumn(_('Display'), checkbox, active=0)
|
||||
@ -128,7 +128,7 @@ class ColumnOrder(ManagedWindow.ManagedWindow):
|
||||
"""
|
||||
self.close()
|
||||
|
||||
def __toggled(cell, path, model):
|
||||
def toggled(cell, path, model):
|
||||
"""
|
||||
Called when the cell information is changed, updating the
|
||||
data model so the that change occurs.
|
||||
|
Reference in New Issue
Block a user