summaryrefslogtreecommitdiff
path: root/libmate-panel-applet
diff options
context:
space:
mode:
Diffstat (limited to 'libmate-panel-applet')
-rw-r--r--libmate-panel-applet/mate-panel-applet-factory.c3
-rw-r--r--libmate-panel-applet/mate-panel-applet.c6
2 files changed, 6 insertions, 3 deletions
diff --git a/libmate-panel-applet/mate-panel-applet-factory.c b/libmate-panel-applet/mate-panel-applet-factory.c
index 326d742b..c0465eb8 100644
--- a/libmate-panel-applet/mate-panel-applet-factory.c
+++ b/libmate-panel-applet/mate-panel-applet-factory.c
@@ -272,7 +272,8 @@ static const gchar introspection_xml[] =
static const GDBusInterfaceVTable interface_vtable = {
method_call_cb,
NULL,
- NULL
+ NULL,
+ { 0 }
};
static GDBusNodeInfo *introspection_data = NULL;
diff --git a/libmate-panel-applet/mate-panel-applet.c b/libmate-panel-applet/mate-panel-applet.c
index 15d97585..fc42554a 100644
--- a/libmate-panel-applet/mate-panel-applet.c
+++ b/libmate-panel-applet/mate-panel-applet.c
@@ -148,7 +148,8 @@ static const GtkActionEntry menu_entries[] = {
static const GtkToggleActionEntry menu_toggle_entries[] = {
{ "Lock", NULL, N_("Loc_k To Panel"),
NULL, NULL,
- G_CALLBACK (mate_panel_applet_menu_cmd_lock) }
+ G_CALLBACK (mate_panel_applet_menu_cmd_lock),
+ FALSE }
};
G_DEFINE_TYPE_WITH_PRIVATE (MatePanelApplet, mate_panel_applet, GTK_TYPE_EVENT_BOX)
@@ -2322,7 +2323,8 @@ static const gchar introspection_xml[] =
static const GDBusInterfaceVTable interface_vtable = {
method_call_cb,
get_property_cb,
- set_property_cb
+ set_property_cb,
+ { 0 }
};
static GDBusNodeInfo *introspection_data = NULL;