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

« back to all changes in this revision

Viewing changes to gio/gdbusauth.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:
104
104
  PROP_STREAM
105
105
};
106
106
 
107
 
G_DEFINE_TYPE (GDBusAuth, _g_dbus_auth, G_TYPE_OBJECT);
 
107
G_DEFINE_TYPE_WITH_PRIVATE (GDBusAuth, _g_dbus_auth, G_TYPE_OBJECT)
108
108
 
109
109
/* ---------------------------------------------------------------------------------------------------- */
110
110
 
166
166
{
167
167
  GObjectClass *gobject_class;
168
168
 
169
 
  g_type_class_add_private (klass, sizeof (GDBusAuthPrivate));
170
 
 
171
169
  gobject_class = G_OBJECT_CLASS (klass);
172
170
  gobject_class->get_property = _g_dbus_auth_get_property;
173
171
  gobject_class->set_property = _g_dbus_auth_set_property;
226
224
static void
227
225
_g_dbus_auth_init (GDBusAuth *auth)
228
226
{
229
 
  auth->priv = G_TYPE_INSTANCE_GET_PRIVATE (auth, G_TYPE_DBUS_AUTH, GDBusAuthPrivate);
230
 
 
 
227
  auth->priv = _g_dbus_auth_get_instance_private (auth);
231
228
}
232
229
 
233
230
static void