diff options
author | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2010-11-25 12:38:04 +0000 |
---|---|---|
committer | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2010-11-25 15:56:56 +0000 |
commit | 54026302fdd4aab3ea8be346de4c9d165e806c2f (patch) | |
tree | 11af40ba2ca7745a30aa7dff5fe70f1b224fcb7d | |
parent | c57ceef0a3a3b8dd6a134856fa3abb49ce56ae5f (diff) |
tp_account_channel_request_get_property: use the right GValue setter
-rw-r--r-- | telepathy-glib/account-channel-request.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/telepathy-glib/account-channel-request.c b/telepathy-glib/account-channel-request.c index fc8084638..bcf4db0e2 100644 --- a/telepathy-glib/account-channel-request.c +++ b/telepathy-glib/account-channel-request.c @@ -187,7 +187,7 @@ tp_account_channel_request_get_property (GObject *object, break; case PROP_REQUEST: - g_value_set_object (value, self->priv->request); + g_value_set_boxed (value, self->priv->request); break; case PROP_USER_ACTION_TIME: |