mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-09-27 17:52:58 +02:00
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:
committed by
Ryan Lortie
parent
57a49f6891
commit
ccf696a6e1
@@ -40,7 +40,7 @@ typedef struct _GListModelInterface GListModelInterface;
|
|||||||
|
|
||||||
struct _GListModelInterface
|
struct _GListModelInterface
|
||||||
{
|
{
|
||||||
GTypeInterface interface;
|
GTypeInterface g_iface;
|
||||||
|
|
||||||
GType (* get_item_type) (GListModel *list);
|
GType (* get_item_type) (GListModel *list);
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user