diff options
author | rbuj <[email protected]> | 2020-11-27 21:58:25 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2020-12-06 18:22:47 +0100 |
commit | 3011ebd46ee4523e4ddc7d673bdabae299a3ea4e (patch) | |
tree | 8f2bc9b9b0435241c35d196b125e04aa60b280bd /geyes | |
parent | 819ee7159045c3d62111509e41f96bc19eaaf599 (diff) | |
download | mate-applets-3011ebd46ee4523e4ddc7d673bdabae299a3ea4e.tar.bz2 mate-applets-3011ebd46ee4523e4ddc7d673bdabae299a3ea4e.tar.xz |
geyes: signal 'dispose' is invalid for instance 'ID' of type 'GtkBox'
Diffstat (limited to 'geyes')
-rw-r--r-- | geyes/geyes.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/geyes/geyes.c b/geyes/geyes.c index 035d7275..ad1997ed 100644 --- a/geyes/geyes.c +++ b/geyes/geyes.c @@ -291,7 +291,7 @@ create_eyes (MatePanelApplet *applet) } static void -dispose_cb (GObject *object, EyesApplet *eyes_applet) +destroy_cb (GObject *object, EyesApplet *eyes_applet) { g_return_if_fail (eyes_applet); @@ -422,8 +422,8 @@ geyes_applet_fill (MatePanelApplet *applet) _("The eyes look in the direction of the mouse pointer")); g_signal_connect (eyes_applet->vbox, - "dispose", - G_CALLBACK (dispose_cb), + "destroy", + G_CALLBACK (destroy_cb), eyes_applet); gtk_widget_show_all (GTK_WIDGET (eyes_applet->applet)); |