forked from AuroraMiddleware/gtk
cellarea: Be very clear
The static analyzer needs to know we absolutely DO NOT want to use this return value.
This commit is contained in:
parent
317dcddddb
commit
510e17d123
@ -2950,7 +2950,9 @@ gtk_cell_area_add_focus_sibling (GtkCellArea *area,
|
||||
siblings = g_hash_table_lookup (priv->focus_siblings, renderer);
|
||||
|
||||
if (siblings)
|
||||
siblings = g_list_append (siblings, sibling);
|
||||
{
|
||||
G_GNUC_UNUSED GList *unused = g_list_append (siblings, sibling);
|
||||
}
|
||||
else
|
||||
{
|
||||
siblings = g_list_append (siblings, sibling);
|
||||
|
Loading…
Reference in New Issue
Block a user