[util] Don't use g_array_unref()
Was introduced in glib 2.22.
This commit is contained in:
parent
48360ec03b
commit
078de49ca1
|
@ -81,7 +81,7 @@ struct view_cairo_t
|
||||||
helper_cairo_line_t &line = g_array_index (lines, helper_cairo_line_t, i);
|
helper_cairo_line_t &line = g_array_index (lines, helper_cairo_line_t, i);
|
||||||
line.finish ();
|
line.finish ();
|
||||||
}
|
}
|
||||||
g_array_unref (lines);
|
g_array_free (lines, TRUE);
|
||||||
}
|
}
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
|
Loading…
Reference in New Issue