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 /drivemount/src/drivemount.c | |
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 'drivemount/src/drivemount.c')
-rw-r--r-- | drivemount/src/drivemount.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/drivemount/src/drivemount.c b/drivemount/src/drivemount.c index fa2857a1..a425237b 100644 --- a/drivemount/src/drivemount.c +++ b/drivemount/src/drivemount.c @@ -189,11 +189,11 @@ applet_factory (MatePanelApplet *applet, gtk_container_add (GTK_CONTAINER (applet), drive_list); - g_signal_connect_object (applet, "change_orient", + g_signal_connect_object (applet, "change-orient", G_CALLBACK (change_orient), drive_list, 0); - g_signal_connect_object (applet, "size_allocate", + g_signal_connect_object (applet, "size-allocate", G_CALLBACK (size_allocate), drive_list, 0); - g_signal_connect (applet, "change_background", + g_signal_connect (applet, "change-background", G_CALLBACK (change_background), drive_list); /* set initial state */ |