summaryrefslogtreecommitdiff
path: root/gdata/gdata-oauth1-authorizer.c
diff options
context:
space:
mode:
Diffstat (limited to 'gdata/gdata-oauth1-authorizer.c')
-rw-r--r--gdata/gdata-oauth1-authorizer.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/gdata/gdata-oauth1-authorizer.c b/gdata/gdata-oauth1-authorizer.c
index 09d766ec..7b857ac0 100644
--- a/gdata/gdata-oauth1-authorizer.c
+++ b/gdata/gdata-oauth1-authorizer.c
@@ -199,6 +199,7 @@ enum {
};
G_DEFINE_TYPE_WITH_CODE (GDataOAuth1Authorizer, gdata_oauth1_authorizer, G_TYPE_OBJECT,
+ G_ADD_PRIVATE (GDataOAuth1Authorizer)
G_IMPLEMENT_INTERFACE (GDATA_TYPE_AUTHORIZER, authorizer_init))
static void
@@ -206,8 +207,6 @@ gdata_oauth1_authorizer_class_init (GDataOAuth1AuthorizerClass *klass)
{
GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
- g_type_class_add_private (klass, sizeof (GDataOAuth1AuthorizerPrivate));
-
gobject_class->get_property = get_property;
gobject_class->set_property = set_property;
gobject_class->dispose = dispose;
@@ -303,7 +302,7 @@ authorizer_init (GDataAuthorizerInterface *iface)
static void
gdata_oauth1_authorizer_init (GDataOAuth1Authorizer *self)
{
- self->priv = G_TYPE_INSTANCE_GET_PRIVATE (self, GDATA_TYPE_OAUTH1_AUTHORIZER, GDataOAuth1AuthorizerPrivate);
+ self->priv = gdata_oauth1_authorizer_get_instance_private (self);
/* Set up the authorizer's mutex */
g_mutex_init (&(self->priv->mutex));