diff options
author | rbuj <[email protected]> | 2021-12-17 14:17:29 +0100 |
---|---|---|
committer | raveit65 <[email protected]> | 2021-12-20 16:57:51 +0100 |
commit | 54e2bb1acaf71b7b54e796f7bfa311fb32d84830 (patch) | |
tree | 74dff7552f367c583be5f1f1944a3b911f32f2c3 /applets/clock/system-timezone.c | |
parent | 5bd053ad542479eaec4166e45195c5e911472f88 (diff) | |
download | mate-panel-54e2bb1acaf71b7b54e796f7bfa311fb32d84830.tar.bz2 mate-panel-54e2bb1acaf71b7b54e796f7bfa311fb32d84830.tar.xz |
Remove unnecessary cast in g_signal_connect* call
Diffstat (limited to 'applets/clock/system-timezone.c')
-rw-r--r-- | applets/clock/system-timezone.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/applets/clock/system-timezone.c b/applets/clock/system-timezone.c index b7b3d64b..a6f9c75d 100644 --- a/applets/clock/system-timezone.c +++ b/applets/clock/system-timezone.c @@ -213,8 +213,7 @@ system_timezone_constructor (GType type, g_object_unref (file); if (priv->monitors[i]) - g_signal_connect (G_OBJECT (priv->monitors[i]), - "changed", + g_signal_connect (priv->monitors [i], "changed", G_CALLBACK (system_timezone_monitor_changed), obj); } |