is-expander and is-expanded are boolean properties, not ints. (#118359,

2003-07-27  Matthias Clasen  <maclas@gmx.de>

	* gtk/gtkcellrenderer.c (gtk_cell_renderer_get_property): is-expander and is-expanded are
	boolean properties, not ints.  (#118359, Josh Parsons)
This commit is contained in:
Matthias Clasen
2003-07-27 21:33:54 +00:00
committed by Matthias Clasen
parent 6706cdf877
commit a27d91b237
6 changed files with 27 additions and 2 deletions

View File

@ -277,10 +277,10 @@ gtk_cell_renderer_get_property (GObject *object,
g_value_set_int (value, cell->height);
break;
case PROP_IS_EXPANDER:
g_value_set_int (value, cell->is_expander);
g_value_set_boolean (value, cell->is_expander);
break;
case PROP_IS_EXPANDED:
g_value_set_int (value, cell->is_expanded);
g_value_set_boolean (value, cell->is_expanded);
break;
case PROP_CELL_BACKGROUND_GDK:
{