diff options
author | monsta <[email protected]> | 2016-05-05 17:16:16 +0300 |
---|---|---|
committer | monsta <[email protected]> | 2016-06-03 14:31:51 +0300 |
commit | c383cf09d716681f0cca795283d7ef3702814f9e (patch) | |
tree | ec3441e8609af6273b58812df5645f7effb3ac56 | |
parent | 642e1ca894f88e3b7d113422b6bcd7506df7300f (diff) | |
download | mate-panel-c383cf09d716681f0cca795283d7ef3702814f9e.tar.bz2 mate-panel-c383cf09d716681f0cca795283d7ef3702814f9e.tar.xz |
added missing variable initialization
-rw-r--r-- | mate-panel/libmate-panel-applet-private/panel-applet-frame-dbus.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mate-panel/libmate-panel-applet-private/panel-applet-frame-dbus.c b/mate-panel/libmate-panel-applet-private/panel-applet-frame-dbus.c index 1308d2fd..463c9994 100644 --- a/mate-panel/libmate-panel-applet-private/panel-applet-frame-dbus.c +++ b/mate-panel/libmate-panel-applet-private/panel-applet-frame-dbus.c @@ -348,6 +348,7 @@ mate_panel_applet_frame_dbus_init (MatePanelAppletFrameDBus *frame) gtk_widget_show (container); gtk_container_add (GTK_CONTAINER (frame), container); frame->priv->container = MATE_PANEL_APPLET_CONTAINER (container); + frame->priv->bg_cancellable = NULL; g_signal_connect (container, "child-property-changed::flags", G_CALLBACK (mate_panel_applet_frame_dbus_flags_changed), |