~ubuntu-branches/ubuntu/oneiric/gnome-system-tools/oneiric

« back to all changes in this revision

Viewing changes to src/users/groups-table.c

  • Committer: Bazaar Package Importer
  • Author(s): Didier Roche
  • Date: 2009-10-19 20:49:26 UTC
  • mto: (1.2.8 squeeze)
  • mto: This revision was merged to the branch mainline in revision 90.
  • Revision ID: james.westby@ubuntu.com-20091019204926-yzdhixh8c0jrznqo
Tags: upstream-2.28.1
ImportĀ upstreamĀ versionĀ 2.28.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
55
55
static gboolean
56
56
groups_model_filter (GtkTreeModel *model, GtkTreeIter *iter, gpointer data)
57
57
{
 
58
        /* Temporary hack to show system groups without forcing to show system users,
 
59
         * which would make the users list quite messy */
 
60
        return TRUE;
 
61
 
 
62
#if 0
58
63
        GstUsersTool *tool = (GstUsersTool *) data;
59
64
        gint gid;
60
65
 
66
71
                (gid == 0 ||
67
72
                 (gid >= tool->minimum_gid &&
68
73
                  gid <= tool->maximum_gid)));
 
74
#endif
69
75
}
70
76
 
71
77
static GtkTreeModel*