summaryrefslogtreecommitdiff
path: root/gdata/gdata-client-login-authorizer.c
diff options
context:
space:
mode:
Diffstat (limited to 'gdata/gdata-client-login-authorizer.c')
-rw-r--r--gdata/gdata-client-login-authorizer.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/gdata/gdata-client-login-authorizer.c b/gdata/gdata-client-login-authorizer.c
index 31edee36..295f5106 100644
--- a/gdata/gdata-client-login-authorizer.c
+++ b/gdata/gdata-client-login-authorizer.c
@@ -159,6 +159,7 @@ enum {
static guint authorizer_signals[LAST_SIGNAL] = { 0, };
G_DEFINE_TYPE_WITH_CODE (GDataClientLoginAuthorizer, gdata_client_login_authorizer, G_TYPE_OBJECT,
+ G_ADD_PRIVATE (GDataClientLoginAuthorizer)
G_IMPLEMENT_INTERFACE (GDATA_TYPE_AUTHORIZER, authorizer_init))
static void
@@ -166,8 +167,6 @@ gdata_client_login_authorizer_class_init (GDataClientLoginAuthorizerClass *klass
{
GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
- g_type_class_add_private (klass, sizeof (GDataClientLoginAuthorizerPrivate));
-
gobject_class->get_property = get_property;
gobject_class->set_property = set_property;
gobject_class->dispose = dispose;
@@ -302,7 +301,7 @@ authorizer_init (GDataAuthorizerInterface *iface)
static void
gdata_client_login_authorizer_init (GDataClientLoginAuthorizer *self)
{
- self->priv = G_TYPE_INSTANCE_GET_PRIVATE (self, GDATA_TYPE_CLIENT_LOGIN_AUTHORIZER, GDataClientLoginAuthorizerPrivate);
+ self->priv = gdata_client_login_authorizer_get_instance_private (self);
/* Set up the authentication mutex */
g_rec_mutex_init (&(self->priv->mutex));