diff options
author | rbuj <[email protected]> | 2021-12-18 14:31:49 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2021-12-19 17:46:41 +0100 |
commit | ede1f04954c5b64dbdaea7a75aecc1153cc6e9b3 (patch) | |
tree | b29cb6bfa05a9b88194631e964f55bbcfcb70ef8 /libmate-panel-applet/test-dbus-applet.c | |
parent | 0791b258daba11925ced8406db204f27b827202f (diff) | |
download | mate-panel-ede1f04954c5b64dbdaea7a75aecc1153cc6e9b3.tar.bz2 mate-panel-ede1f04954c5b64dbdaea7a75aecc1153cc6e9b3.tar.xz |
Use dashes instead of underscores in signal names
Diffstat (limited to 'libmate-panel-applet/test-dbus-applet.c')
-rw-r--r-- | libmate-panel-applet/test-dbus-applet.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libmate-panel-applet/test-dbus-applet.c b/libmate-panel-applet/test-dbus-applet.c index 27c3a308..0da1e3ad 100644 --- a/libmate-panel-applet/test-dbus-applet.c +++ b/libmate-panel-applet/test-dbus-applet.c @@ -172,17 +172,17 @@ test_applet_fill (TestApplet *applet) mate_panel_applet_set_flags (MATE_PANEL_APPLET (applet), MATE_PANEL_APPLET_HAS_HANDLE); g_signal_connect (G_OBJECT (applet), - "change_orient", + "change-orient", G_CALLBACK (test_applet_handle_orient_change), NULL); g_signal_connect (G_OBJECT (applet), - "change_size", + "change-size", G_CALLBACK (test_applet_handle_size_change), NULL); g_signal_connect (G_OBJECT (applet), - "change_background", + "change-background", G_CALLBACK (test_applet_handle_background_change), NULL); |