diff --git a/src/DisplayModels/_PeopleModel.py b/src/DisplayModels/_PeopleModel.py index 6485be7a3..d730d59f2 100644 --- a/src/DisplayModels/_PeopleModel.py +++ b/src/DisplayModels/_PeopleModel.py @@ -322,6 +322,7 @@ class PeopleModel(gtk.GenericTreeModel): ngn = name_displayer.name_grouping_data nsn = name_displayer.raw_sorted_name handle_list = self.db.iter_person_handles() + self.total = self.db.get_number_of_people() if dfilter: handle_list = dfilter.apply(self.db, handle_list) diff --git a/src/cli/__init__.py b/src/cli/__init__.py index f430d5009..dc6c4ffc3 100644 --- a/src/cli/__init__.py +++ b/src/cli/__init__.py @@ -17,7 +17,7 @@ # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # -# $Id: __init__.py 11943 2009-02-09 23:37:40Z acraphae $ +# $Id$ """ Package init for the cli package. diff --git a/src/cli/arghandler.py b/src/cli/arghandler.py index ec49711b3..ea184adf0 100644 --- a/src/cli/arghandler.py +++ b/src/cli/arghandler.py @@ -22,7 +22,7 @@ # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # -# $Id: ArgHandler.py 12559 2009-05-21 17:19:50Z gbritton $ +# $Id$ """ Module responsible for handling the command line arguments for GRAMPS. diff --git a/src/cli/argparser.py b/src/cli/argparser.py index 6d1807778..24f1f42b3 100644 --- a/src/cli/argparser.py +++ b/src/cli/argparser.py @@ -22,7 +22,7 @@ # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # -# $Id: ArgHandler.py 12559 2009-05-21 17:19:50Z gbritton $ +# $Id$ """ Module responsible for handling the command line arguments for GRAMPS. diff --git a/src/cli/clidbman.py b/src/cli/clidbman.py index 939404c0d..9a60ea51c 100644 --- a/src/cli/clidbman.py +++ b/src/cli/clidbman.py @@ -20,7 +20,7 @@ # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # -# $Id: DbManager.py 12621 2009-06-03 18:39:24Z ldnp $ +# $Id$ """ Provide the management of databases from CLI. This includes opening, renaming, diff --git a/src/gui/__init__.py b/src/gui/__init__.py index f6cd55766..7dd896dde 100644 --- a/src/gui/__init__.py +++ b/src/gui/__init__.py @@ -18,7 +18,7 @@ # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # -# $Id: __init__.py 11943 2009-02-09 23:37:40Z acraphae $ +# $Id$ """ Package init for the gui package. diff --git a/src/gui/grampsgui.py b/src/gui/grampsgui.py index 38a5e2f1e..f59381199 100644 --- a/src/gui/grampsgui.py +++ b/src/gui/grampsgui.py @@ -19,7 +19,7 @@ # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # -# $Id: gramps.py 10981 2008-08-13 06:01:11Z romjerome $ +# $Id$ #------------------------------------------------------------------------- # diff --git a/src/gui/utils.py b/src/gui/utils.py index aada1a019..a08dfe438 100644 --- a/src/gui/utils.py +++ b/src/gui/utils.py @@ -18,7 +18,7 @@ # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # -# $Id: Utils.py 12603 2009-05-31 14:59:56Z bmcage $ +# $Id$ """ Utility functions that depend on GUI components or for GUI components diff --git a/src/gui/viewmanager.py b/src/gui/viewmanager.py index 6560da90f..60e112f48 100644 --- a/src/gui/viewmanager.py +++ b/src/gui/viewmanager.py @@ -3,6 +3,7 @@ # # Copyright (C) 2005-2007 Donald N. Allingham # Copyright (C) 2008 Brian G. Matherly +# Copyright (C) 2009 Benny Malengier # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/src/gui/views/__init__.py b/src/gui/views/__init__.py index 622330914..105e2a2c8 100644 --- a/src/gui/views/__init__.py +++ b/src/gui/views/__init__.py @@ -17,7 +17,7 @@ # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # -# $Id: __init__.py 11943 2009-02-09 23:37:40Z acraphae $ +# $Id$ """ Package init for the views package. diff --git a/src/gui/views/treemodels/__init__.py b/src/gui/views/treemodels/__init__.py index 617ba3923..cb923d8b2 100644 --- a/src/gui/views/treemodels/__init__.py +++ b/src/gui/views/treemodels/__init__.py @@ -17,7 +17,7 @@ # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # -# $Id: __init__.py 11943 2009-02-09 23:37:40Z acraphae $ +# $Id$ """ Package init for the treemodels package. diff --git a/src/gui/views/treemodels/flatbasemodel.py b/src/gui/views/treemodels/flatbasemodel.py index a3fdeb3f4..185fe712f 100644 --- a/src/gui/views/treemodels/flatbasemodel.py +++ b/src/gui/views/treemodels/flatbasemodel.py @@ -18,7 +18,7 @@ # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # -# $Id: _BaseModel.py 12559 2009-05-21 17:19:50Z gbritton $ +# $Id$ """ This module provides the flat treemodel that is used for all flat treeviews.