[util] Don't use g_array_unref()

Was introduced in glib 2.22.
This commit is contained in:
Behdad Esfahbod 2013-09-26 18:26:43 -04:00
parent 48360ec03b
commit 078de49ca1

View File

@ -81,7 +81,7 @@ struct view_cairo_t
helper_cairo_line_t &line = g_array_index (lines, helper_cairo_line_t, i);
line.finish ();
}
g_array_unref (lines);
g_array_free (lines, TRUE);
}
protected: