Correct the return type of gtk_tree_model_filter_get_flags(). (#149195,

Tue Aug  3 18:38:40 2004  Matthias Clasen  <maclas@gmx.de>

	* gtk/gtktreemodelfilter.c: Correct the return type
	of gtk_tree_model_filter_get_flags().  (#149195, Morten Welinder)
This commit is contained in:
Matthias Clasen 2004-08-03 22:41:31 +00:00 committed by Matthias Clasen
parent 764bf6bb7e
commit a8139b2d59
5 changed files with 22 additions and 2 deletions

View File

@ -1,3 +1,8 @@
Tue Aug 3 18:38:40 2004 Matthias Clasen <maclas@gmx.de>
* gtk/gtktreemodelfilter.c: Correct the return type
of gtk_tree_model_filter_get_flags(). (#149195, Morten Welinder)
Tue Aug 3 18:16:55 2004 Matthias Clasen <maclas@gmx.de>
Fix #149191, reported by Morten Welinder:

View File

@ -1,3 +1,8 @@
Tue Aug 3 18:38:40 2004 Matthias Clasen <maclas@gmx.de>
* gtk/gtktreemodelfilter.c: Correct the return type
of gtk_tree_model_filter_get_flags(). (#149195, Morten Welinder)
Tue Aug 3 18:16:55 2004 Matthias Clasen <maclas@gmx.de>
Fix #149191, reported by Morten Welinder:

View File

@ -1,3 +1,8 @@
Tue Aug 3 18:38:40 2004 Matthias Clasen <maclas@gmx.de>
* gtk/gtktreemodelfilter.c: Correct the return type
of gtk_tree_model_filter_get_flags(). (#149195, Morten Welinder)
Tue Aug 3 18:16:55 2004 Matthias Clasen <maclas@gmx.de>
Fix #149191, reported by Morten Welinder:

View File

@ -1,3 +1,8 @@
Tue Aug 3 18:38:40 2004 Matthias Clasen <maclas@gmx.de>
* gtk/gtktreemodelfilter.c: Correct the return type
of gtk_tree_model_filter_get_flags(). (#149195, Morten Welinder)
Tue Aug 3 18:16:55 2004 Matthias Clasen <maclas@gmx.de>
Fix #149191, reported by Morten Welinder:

View File

@ -146,7 +146,7 @@ static void gtk_tree_model_filter_rows_reordered (GtkTr
gpointer data);
/* GtkTreeModel interface */
static guint gtk_tree_model_filter_get_flags (GtkTreeModel *model);
static GtkTreeModelFlags gtk_tree_model_filter_get_flags (GtkTreeModel *model);
static gint gtk_tree_model_filter_get_n_columns (GtkTreeModel *model);
static GType gtk_tree_model_filter_get_column_type (GtkTreeModel *model,
gint index);
@ -1784,7 +1784,7 @@ gtk_tree_model_filter_rows_reordered (GtkTreeModel *c_model,
}
/* TreeModelIface implementation */
static guint
static GtkTreeModelFlags
gtk_tree_model_filter_get_flags (GtkTreeModel *model)
{
GtkTreeModelFlags flags;