glistmodel.h: Fix _GListModelInterface Define

"interface" is a reserved word on Visual Studio, so fix the build by
using g_iface instead.

https://bugzilla.gnome.org/show_bug.cgi?id=743827
This commit is contained in:
Chun-wei Fan 2015-02-02 13:33:18 +08:00 committed by Ryan Lortie
parent 57a49f6891
commit ccf696a6e1

View File

@ -40,7 +40,7 @@ typedef struct _GListModelInterface GListModelInterface;
struct _GListModelInterface
{
GTypeInterface interface;
GTypeInterface g_iface;
GType (* get_item_type) (GListModel *list);