user-accounts: Fix namespace of CcUserPanel

It wasn't correctly moved from the UM namespace when renamed in ec529e8.
This hasn't caused a problem, it's just a little confusing.
This commit is contained in:
Robert Ancell 2018-11-06 16:00:36 +13:00
parent 65cb7e98d1
commit ae90438bc8
2 changed files with 4 additions and 4 deletions

View file

@ -575,7 +575,7 @@ delete_enterprise_user_response (GtkWidget *dialog,
gint response_id,
gpointer user_data)
{
CcUserPanel *self = UM_USER_PANEL (user_data);
CcUserPanel *self = CC_USER_PANEL (user_data);
AsyncDeleteData *data;
ActUser *user;
@ -1335,7 +1335,7 @@ settings_or_null (const gchar *schema)
static void
cc_user_panel_constructed (GObject *object)
{
CcUserPanel *self = UM_USER_PANEL (object);
CcUserPanel *self = CC_USER_PANEL (object);
CcShell *shell;
G_OBJECT_CLASS (cc_user_panel_parent_class)->constructed (object);
@ -1381,7 +1381,7 @@ cc_user_panel_init (CcUserPanel *self)
static void
cc_user_panel_dispose (GObject *object)
{
CcUserPanel *self = UM_USER_PANEL (object);
CcUserPanel *self = CC_USER_PANEL (object);
g_cancellable_cancel (self->cancellable);
g_clear_object (&self->cancellable);

View file

@ -24,6 +24,6 @@
G_BEGIN_DECLS
G_DECLARE_FINAL_TYPE (CcUserPanel, cc_user_panel, UM, USER_PANEL, CcPanel)
G_DECLARE_FINAL_TYPE (CcUserPanel, cc_user_panel, CC, USER_PANEL, CcPanel)
G_END_DECLS