diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2009-04-17 18:52:12 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2009-04-17 18:52:12 +0800 |
commit | 8aa1b96e086393fe32443e40ab2c81a5026bbfd2 (patch) | |
tree | 1e88fe2c44a69233a6e2a5959132cecf978305db /libempathy | |
parent | a2f604f8ade61df4a0c75683f222d2c78d9b27e5 (diff) | |
download | gsoc2013-empathy-8aa1b96e086393fe32443e40ab2c81a5026bbfd2.tar gsoc2013-empathy-8aa1b96e086393fe32443e40ab2c81a5026bbfd2.tar.gz gsoc2013-empathy-8aa1b96e086393fe32443e40ab2c81a5026bbfd2.tar.bz2 gsoc2013-empathy-8aa1b96e086393fe32443e40ab2c81a5026bbfd2.tar.lz gsoc2013-empathy-8aa1b96e086393fe32443e40ab2c81a5026bbfd2.tar.xz gsoc2013-empathy-8aa1b96e086393fe32443e40ab2c81a5026bbfd2.tar.zst gsoc2013-empathy-8aa1b96e086393fe32443e40ab2c81a5026bbfd2.zip |
tp-tube: remove priv->parameters
Diffstat (limited to 'libempathy')
-rw-r--r-- | libempathy/empathy-tp-tube.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/libempathy/empathy-tp-tube.c b/libempathy/empathy-tp-tube.c index 557ae9d87..64e45962d 100644 --- a/libempathy/empathy-tp-tube.c +++ b/libempathy/empathy-tp-tube.c @@ -63,8 +63,6 @@ free_empathy_tp_tube_accept_data (gpointer data) typedef struct { TpChannel *channel; - /* FIXME readd support for parameters.. */ - GHashTable *parameters; EmpTubeChannelState state; } EmpathyTpTubePriv; @@ -199,9 +197,6 @@ tp_tube_finalize (GObject *object) g_object_unref (priv->channel); } - if (priv->parameters != NULL) - g_hash_table_destroy (priv->parameters); - G_OBJECT_CLASS (empathy_tp_tube_parent_class)->finalize (object); } |