diff options
author | rbuj <[email protected]> | 2020-04-07 14:12:38 +0200 |
---|---|---|
committer | raveit65 <[email protected]> | 2020-05-25 09:37:56 +0200 |
commit | 2570b9ab7f8e26c0035bd6fb5401cba99d682ac4 (patch) | |
tree | 208e932cdde1b8e50ac6cffe9e72db7ac6940105 /applets/notification_area/system-tray/na-tray.c | |
parent | 146cc418fad7c39a21a1ce55f92a895bb0be3332 (diff) | |
download | mate-panel-2570b9ab7f8e26c0035bd6fb5401cba99d682ac4.tar.bz2 mate-panel-2570b9ab7f8e26c0035bd6fb5401cba99d682ac4.tar.xz |
Fix some cast-function-type warnings introduced in GCC 8
Diffstat (limited to 'applets/notification_area/system-tray/na-tray.c')
-rw-r--r-- | applets/notification_area/system-tray/na-tray.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/applets/notification_area/system-tray/na-tray.c b/applets/notification_area/system-tray/na-tray.c index 8cf1b9ec..fee75dc8 100644 --- a/applets/notification_area/system-tray/na-tray.c +++ b/applets/notification_area/system-tray/na-tray.c @@ -715,7 +715,7 @@ idle_redraw_cb (NaTray *tray) NaTrayPrivate *priv = tray->priv; g_hash_table_foreach (priv->trays_screen->icon_table, - (GHFunc) na_tray_child_force_redraw, NULL); + na_tray_child_force_redraw, NULL); priv->idle_redraw_id = 0; |