diff options
author | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2013-01-04 12:14:19 +0000 |
---|---|---|
committer | Simon McVittie <simon.mcvittie@collabora.co.uk> | 2013-01-04 12:14:19 +0000 |
commit | c66a97155085dfd6229452daf1cf0609d929e6ad (patch) | |
tree | 47c2dfb427bdaea29dec644ec9ae7ed2d308426c | |
parent | 8c08548701afad473da5005ded905bfcd59cd561 (diff) |
Fix the build with --enable-olpc by removing unused variables
Yet another instance of "things that aren't tested don't work"...
-rw-r--r-- | src/olpc-activity.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/olpc-activity.c b/src/olpc-activity.c index 2af6cb16..47e88c26 100644 --- a/src/olpc-activity.c +++ b/src/olpc-activity.c @@ -182,8 +182,6 @@ salut_olpc_activity_dispose (GObject *object) { SalutOlpcActivity *self = SALUT_OLPC_ACTIVITY (object); SalutOlpcActivityPrivate *priv = SALUT_OLPC_ACTIVITY_GET_PRIVATE (self); - TpHandleRepoIface *room_repo = tp_base_connection_get_handles - ((TpBaseConnection *) self->connection, TP_HANDLE_TYPE_ROOM); if (priv->dispose_has_run) return; @@ -424,9 +422,6 @@ salut_olpc_activity_update (SalutOlpcActivity *self, gboolean is_private) { SalutOlpcActivityPrivate *priv = SALUT_OLPC_ACTIVITY_GET_PRIVATE (self); - TpBaseConnection *base_conn = (TpBaseConnection *) (self->connection); - TpHandleRepoIface *room_repo = tp_base_connection_get_handles (base_conn, - TP_HANDLE_TYPE_ROOM); gboolean changed = FALSE; GError *error = NULL; gboolean become_valid = FALSE; |