Use actual signature for the changed signal

2001-12-18  Bradford Hovinen  <hovinen@ximian.com>

	* gconf-property-editor.c (peditor_string_widget_changed): Use
	actual signature for the changed signal
This commit is contained in:
Bradford Hovinen 2001-12-18 16:18:35 +00:00 committed by Bradford Hovinen (Gdict maintainer)
parent b78df6748e
commit 26aba8a5e3
2 changed files with 6 additions and 5 deletions

View file

@ -1,3 +1,8 @@
2001-12-18 Bradford Hovinen <hovinen@ximian.com>
* gconf-property-editor.c (peditor_string_widget_changed): Use
actual signature for the changed signal
2001-12-17 Bradford Hovinen <hovinen@ximian.com>
* gconf-property-editor.c (peditor_color_value_changed): Use a

View file

@ -311,13 +311,9 @@ peditor_string_value_changed (GConfEngine *engine, guint cnxn_id, GConfEntry *en
}
static void
peditor_string_widget_changed (GConfPropertyEditor *peditor)
peditor_string_widget_changed (GConfPropertyEditor *peditor, GtkEntry *entry)
{
GConfValue *value;
GtkEntry *entry;
/* I do this so that we don't have to deal with multiple callback signatures */
entry = g_object_get_data (peditor, "entry");
gconf_change_set_set_string (peditor->p->changeset, peditor->p->key, gtk_entry_get_text (entry));
gconf_change_set_check_value (peditor->p->changeset, peditor->p->key, &value);