online-accounts: Fix the namespace prefix

The module-wide prefix is 'Cc' and the name of the class is 'GoaPanel',
not 'CcGoa' and 'Panel'.

https://bugzilla.gnome.org/show_bug.cgi?id=774222
This commit is contained in:
Georges Basile Stavracas Neto 2016-11-30 13:12:03 +01:00 committed by Debarshi Ray
parent f3282272b8
commit a9701b3024

View file

@ -25,9 +25,9 @@
G_BEGIN_DECLS
#define CC_GOA_TYPE_PANEL (cc_goa_panel_get_type ())
#define CC_GOA_PANEL(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), CC_GOA_TYPE_PANEL, CcGoaPanel))
#define CC_GOA_IS_PANEL(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), CC_GOA_TYPE_PANEL))
#define CC_TYPE_GOA_PANEL (cc_goa_panel_get_type ())
#define CC_GOA_PANEL(o) (G_TYPE_CHECK_INSTANCE_CAST ((o), CC_TYPE_GOA_PANEL, CcGoaPanel))
#define CC_IS_GOA_PANEL(o) (G_TYPE_CHECK_INSTANCE_TYPE ((o), CC_TYPE_GOA_PANEL))
typedef struct _CcGoaPanel CcGoaPanel;