~ubuntu-branches/ubuntu/saucy/glib2.0/saucy-proposed

« back to all changes in this revision

Viewing changes to gio/gdbusauthmechanismexternal.c

  • Committer: Package Import Robot
  • Author(s): Iain Lane
  • Date: 2013-06-25 12:43:56 UTC
  • mfrom: (1.63.22)
  • Revision ID: package-import@ubuntu.com-20130625124356-597xf4lpikauchiy
Tags: 2.37.3-1ubuntu1
* Resynchronise on unrelease Debian SVN (glib is in NEW there). Remaining
  change:
  - Build-Depend on python:any for cross building.

Show diffs side-by-side

added added

removed removed

Lines of Context:
77
77
 
78
78
/* ---------------------------------------------------------------------------------------------------- */
79
79
 
80
 
G_DEFINE_TYPE (GDBusAuthMechanismExternal, _g_dbus_auth_mechanism_external, G_TYPE_DBUS_AUTH_MECHANISM);
 
80
G_DEFINE_TYPE_WITH_PRIVATE (GDBusAuthMechanismExternal, _g_dbus_auth_mechanism_external, G_TYPE_DBUS_AUTH_MECHANISM)
81
81
 
82
82
/* ---------------------------------------------------------------------------------------------------- */
83
83
 
96
96
  GObjectClass *gobject_class;
97
97
  GDBusAuthMechanismClass *mechanism_class;
98
98
 
99
 
  g_type_class_add_private (klass, sizeof (GDBusAuthMechanismExternalPrivate));
100
 
 
101
99
  gobject_class = G_OBJECT_CLASS (klass);
102
100
  gobject_class->finalize = _g_dbus_auth_mechanism_external_finalize;
103
101
 
123
121
static void
124
122
_g_dbus_auth_mechanism_external_init (GDBusAuthMechanismExternal *mechanism)
125
123
{
126
 
  mechanism->priv = G_TYPE_INSTANCE_GET_PRIVATE (mechanism,
127
 
                                                 G_TYPE_DBUS_AUTH_MECHANISM_EXTERNAL,
128
 
                                                 GDBusAuthMechanismExternalPrivate);
 
124
  mechanism->priv = _g_dbus_auth_mechanism_external_get_instance_private (mechanism);
129
125
}
130
126
 
131
127
/* ---------------------------------------------------------------------------------------------------- */