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:
parent
f3282272b8
commit
a9701b3024
1 changed files with 3 additions and 3 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue