Merge branch 'warning-fixes' into 'master'

user-selector: Fix some const-to-non-const cast warnings

See merge request pwithnall/malcontent!27
This commit is contained in:
Philip Withnall 2020-02-19 13:40:51 +00:00
commit 48b9839d04
1 changed files with 3 additions and 3 deletions

View File

@ -309,8 +309,8 @@ sort_users (gconstpointer a,
ActUser *ua, *ub;
gint result;
ua = ACT_USER (a);
ub = ACT_USER (b);
ua = ACT_USER ((gpointer) a);
ub = ACT_USER ((gpointer) b);
/* Make sure the current user is shown first */
if (act_user_get_uid (ua) == getuid ())
@ -344,7 +344,7 @@ user_compare (gconstpointer i,
gint result;
item = (MctCarouselItem *) i;
user = ACT_USER (u);
user = ACT_USER ((gpointer) u);
uid_a = GPOINTER_TO_INT (g_object_get_data (G_OBJECT (item), "uid"));
uid_b = act_user_get_uid (user);