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/clock-location-tile.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/clock-location-tile.c')
-rw-r--r-- | applets/clock/clock-location-tile.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/applets/clock/clock-location-tile.c b/applets/clock/clock-location-tile.c index 4d0fc217..e9260a31 100644 --- a/applets/clock/clock-location-tile.c +++ b/applets/clock/clock-location-tile.c @@ -82,7 +82,7 @@ clock_location_tile_new (ClockLocation *loc, g_signal_connect (priv->weather_icon, "query-tooltip", G_CALLBACK (weather_tooltip), this); - priv->location_weather_updated_id = g_signal_connect (G_OBJECT (loc), "weather-updated", + priv->location_weather_updated_id = g_signal_connect (loc, "weather-updated", G_CALLBACK (update_weather_icon), this); return this; |