diff options
author | rbuj <[email protected]> | 2021-12-18 14:52:15 +0100 |
---|---|---|
committer | Luke from DC <[email protected]> | 2022-08-08 03:41:08 +0000 |
commit | dc37d79d6e2797f7f613051261466b93fc01107d (patch) | |
tree | 113d6524a05b1a6c2410b11931ae6cea19600099 /accessx-status | |
parent | 281cf3a35e1c492d02f82eaa30b006d19d72af2f (diff) | |
download | mate-applets-dc37d79d6e2797f7f613051261466b93fc01107d.tar.bz2 mate-applets-dc37d79d6e2797f7f613051261466b93fc01107d.tar.xz |
Use dashes instead of underscores in signal names
Diffstat (limited to 'accessx-status')
-rw-r--r-- | accessx-status/src/applet.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/accessx-status/src/applet.c b/accessx-status/src/applet.c index c24a6561..88239c7f 100644 --- a/accessx-status/src/applet.c +++ b/accessx-status/src/applet.c @@ -1633,16 +1633,16 @@ accessx_status_applet_fill (MatePanelApplet* applet) } g_object_connect (sapplet->applet, - "signal::destroy", accessx_status_applet_destroy, sapplet, - "signal::change_orient", accessx_status_applet_reorient, sapplet, - "signal::change_size", accessx_status_applet_resize, sapplet, + "destroy", accessx_status_applet_destroy, sapplet, + "change-orient", accessx_status_applet_reorient, sapplet, + "change-size", accessx_status_applet_resize, sapplet, NULL); - g_signal_connect (sapplet->applet, "button_press_event", + g_signal_connect (sapplet->applet, "button-press-event", G_CALLBACK (button_press_cb), sapplet); - g_signal_connect (sapplet->applet, "key_press_event", + g_signal_connect (sapplet->applet, "key-press-event", G_CALLBACK (key_press_cb), sapplet); |