A Pile of pending changes

This commit is contained in:
Jody Goldberg 2002-07-16 22:07:42 +00:00
parent 52d3daae86
commit b6e858deb7
13 changed files with 799 additions and 983 deletions

View file

@ -1,3 +1,9 @@
2002-07-16 Jody Goldberg <jody@gnome.org>
* gconf-property-editor.c (gconf_value_int_to_float) : add a peditor
arg so that these can be used without wrappers.
(gconf_value_float_to_int) : ditto.
2002-07-10 Jody Goldberg <jody@gnome.org>
* capplet-util.c (capplet_set_icon) : look in more places.

View file

@ -1175,7 +1175,7 @@ gconf_peditor_widget_set_guard (GConfPropertyEditor *peditor,
}
GConfValue *
gconf_value_int_to_float (const GConfValue *value)
gconf_value_int_to_float (GConfPropertyEditor *ignored, const GConfValue *value)
{
GConfValue *new_value;
@ -1185,7 +1185,7 @@ gconf_value_int_to_float (const GConfValue *value)
}
GConfValue *
gconf_value_float_to_int (const GConfValue *value)
gconf_value_float_to_int (GConfPropertyEditor *ignored, const GConfValue *value)
{
GConfValue *new_value;

View file

@ -155,8 +155,9 @@ GObject *gconf_peditor_new_image (GConfChangeSet *changeset,
void gconf_peditor_widget_set_guard (GConfPropertyEditor *peditor,
GtkWidget *widget);
GConfValue *gconf_value_int_to_float (const GConfValue *value);
GConfValue *gconf_value_float_to_int (const GConfValue *value);
/* some convenience callbacks to map int <-> float */
GConfValue *gconf_value_int_to_float (GConfPropertyEditor *ignored, GConfValue const *value);
GConfValue *gconf_value_float_to_int (GConfPropertyEditor *ignored, GConfValue const *value);
G_END_DECLS