summaryrefslogtreecommitdiff
path: root/src/tube-iface.c
diff options
context:
space:
mode:
authorWill Thompson <will.thompson@collabora.co.uk>2011-03-18 18:41:25 +0000
committerJonny Lamb <jonny.lamb@collabora.co.uk>2011-03-21 13:54:45 +0000
commitd4a982ee82f105fa5e11d8ed3086482561af431c (patch)
treed6ce815b86fb0958d320b9b10fa02da4eec3bff2 /src/tube-iface.c
parentcde06ccf071f793a81e0f71627719d7753d9430d (diff)
downloadtelepathy-salut-d4a982ee82f105fa5e11d8ed3086482561af431c.tar.gz
Unconfuse TpTubeChannelState and TpTubeState a bit
My version of GCC didn't like building a bunch of the tube code because it confuses TpTubeChannelState and TpTubeState. In practice this code works because the former is a superset of the latter and none of the confused code paths can encounter the extra value. This patch tidies up just enough for the compiler not to whine.
Diffstat (limited to 'src/tube-iface.c')
-rw-r--r--src/tube-iface.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tube-iface.c b/src/tube-iface.c
index 4108345e..1089986a 100644
--- a/src/tube-iface.c
+++ b/src/tube-iface.c
@@ -189,7 +189,7 @@ salut_tube_iface_base_init (gpointer klass)
param_spec = g_param_spec_uint (
"state",
"Tube state",
- "The SalutTubeState of this DBUS tube object",
+ "The TpTubeChannelState of this DBUS tube object",
0, G_MAXUINT32, TP_TUBE_STATE_REMOTE_PENDING,
G_PARAM_READABLE | G_PARAM_STATIC_STRINGS);
g_object_interface_install_property (klass, param_spec);