summaryrefslogtreecommitdiff
path: root/src/glade-widget.h
diff options
context:
space:
mode:
authorJoaquin Cuenca Abela <e98cuenc@yahoo.com>2004-01-22 21:21:02 +0000
committerJoaquĆ­n Cuenca Abela <cuenca@src.gnome.org>2004-01-22 21:21:02 +0000
commit0027cb6b74849f3f77de2d196542d2363dc2c25c (patch)
tree8b1b86f5da2b818bb27276dc4c9badf36e09d7ae /src/glade-widget.h
parent81f7db6aacc76122876594b3c736b21ff075dfd8 (diff)
downloadglade-0027cb6b74849f3f77de2d196542d2363dc2c25c.tar.gz
fix some bugs in the signal editor. Now it's more or less bug free (I
2004-01-22 Joaquin Cuenca Abela <e98cuenc@yahoo.com> * src/glade-signal-editor.c: fix some bugs in the signal editor. Now it's more or less bug free (I hope), but the UI still needs a bit of love. * src/glade-widget.[ch]: change the signals from a hash that points to a GList, to a hash that points to an GArray. The change it also solves some bugs in the old implementation.
Diffstat (limited to 'src/glade-widget.h')
-rw-r--r--src/glade-widget.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/glade-widget.h b/src/glade-widget.h
index 51eee0c3..a07d6ff6 100644
--- a/src/glade-widget.h
+++ b/src/glade-widget.h
@@ -100,8 +100,8 @@ GladeWidget *glade_widget_get_from_gtk_widget (GtkWidget *widget);
GladeWidget *glade_widget_get_parent (GladeWidget *widget);
/* Widget signal*/
-GList *glade_widget_find_signal (GladeWidget *widget, GladeSignal *signal);
-GList *glade_widget_find_signals_by_name (GladeWidget *widget, const char *name);
+GladeSignal *glade_widget_find_signal (GladeWidget *widget, GladeSignal *signal);
+GArray *glade_widget_find_signals_by_name (GladeWidget *widget, const char *name);
void glade_widget_add_signal (GladeWidget *widget, GladeSignal *signal);
void glade_widget_remove_signal (GladeWidget *widget, GladeSignal *signal);