aboutsummaryrefslogtreecommitdiffstats
path: root/addressbook/gui
diff options
context:
space:
mode:
Diffstat (limited to 'addressbook/gui')
-rw-r--r--addressbook/gui/widgets/e-addressbook-view.c6
-rw-r--r--addressbook/gui/widgets/e-addressbook-view.h8
2 files changed, 7 insertions, 7 deletions
diff --git a/addressbook/gui/widgets/e-addressbook-view.c b/addressbook/gui/widgets/e-addressbook-view.c
index a46bddbc99..67d753c8a8 100644
--- a/addressbook/gui/widgets/e-addressbook-view.c
+++ b/addressbook/gui/widgets/e-addressbook-view.c
@@ -645,7 +645,7 @@ addressbook_view_class_init (EAddressbookViewClass *class)
signals[POPUP_EVENT] = g_signal_new (
"popup-event",
- G_OBJECT_CLASS_TYPE (object_class),
+ G_TYPE_FROM_CLASS (class),
G_SIGNAL_RUN_LAST,
G_STRUCT_OFFSET (EAddressbookViewClass, popup_event),
NULL, NULL,
@@ -655,7 +655,7 @@ addressbook_view_class_init (EAddressbookViewClass *class)
signals[COMMAND_STATE_CHANGE] = g_signal_new (
"command-state-change",
- G_OBJECT_CLASS_TYPE (object_class),
+ G_TYPE_FROM_CLASS (class),
G_SIGNAL_RUN_LAST,
G_STRUCT_OFFSET (EAddressbookViewClass, command_state_change),
NULL, NULL,
@@ -664,7 +664,7 @@ addressbook_view_class_init (EAddressbookViewClass *class)
signals[SELECTION_CHANGE] = g_signal_new (
"selection-change",
- G_OBJECT_CLASS_TYPE (object_class),
+ G_TYPE_FROM_CLASS (class),
G_SIGNAL_RUN_LAST,
G_STRUCT_OFFSET (EAddressbookViewClass, selection_change),
NULL, NULL,
diff --git a/addressbook/gui/widgets/e-addressbook-view.h b/addressbook/gui/widgets/e-addressbook-view.h
index 743e873dc2..aad4a5ac39 100644
--- a/addressbook/gui/widgets/e-addressbook-view.h
+++ b/addressbook/gui/widgets/e-addressbook-view.h
@@ -64,12 +64,12 @@ struct _EAddressbookViewClass {
GtkVBoxClass parent_class;
/* Signals */
- void (*popup_event) (EAddressbookView *view,
+ void (*popup_event) (EAddressbookView *view,
GdkEvent *event);
- void (*status_message) (EAddressbookView *view,
+ void (*status_message) (EAddressbookView *view,
const gchar *message);
- void (*command_state_change) (EAddressbookView *view);
- void (*selection_change) (EAddressbookView *view);
+ void (*command_state_change) (EAddressbookView *view);
+ void (*selection_change) (EAddressbookView *view);
};
GType e_addressbook_view_get_type (void);