diff options
author | Jonny Lamb <jonny.lamb@collabora.co.uk> | 2011-01-06 14:38:51 +0000 |
---|---|---|
committer | Jonny Lamb <jonny.lamb@collabora.co.uk> | 2011-01-06 14:38:51 +0000 |
commit | c52678881e59344a91eef1b95ab60d69a19b3078 (patch) | |
tree | 5eb909bac79372b19e96192410f525ae4a87ca96 | |
parent | 82c7eef57a72a2bc5f620827cc95f7a67eca2042 (diff) |
dtmf: fix signal gtk-doc off-by-one error
Signed-off-by: Jonny Lamb <jonny.lamb@collabora.co.uk>
-rw-r--r-- | telepathy-glib/dtmf.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/telepathy-glib/dtmf.c b/telepathy-glib/dtmf.c index f895bf2cf..03b0da1b4 100644 --- a/telepathy-glib/dtmf.c +++ b/telepathy-glib/dtmf.c @@ -476,6 +476,7 @@ tp_dtmf_player_class_init (TpDTMFPlayerClass *cls) /** * TpDTMFPlayer::started-tone: + * @self: the #TpDTMFPlayer * @event: a %G_TYPE_UINT representing the tone being played * * Emitted at the beginning of each tone. @@ -486,6 +487,7 @@ tp_dtmf_player_class_init (TpDTMFPlayerClass *cls) /** * TpDTMFPlayer::stopped-tone: + * @self: the #TpDTMFPlayer * * Emitted at the end of each tone. * @@ -497,6 +499,7 @@ tp_dtmf_player_class_init (TpDTMFPlayerClass *cls) /** * TpDTMFPlayer::finished: + * @self: the #TpDTMFPlayer * @cancelled: %TRUE if playback was cancelled with tp_dtmf_player_cancel() * * Emitted when playback stops, either because the end of the @@ -511,6 +514,7 @@ tp_dtmf_player_class_init (TpDTMFPlayerClass *cls) /** * TpDTMFPlayer::tones-deferred: + * @self: the #TpDTMFPlayer * @tones: the remaining tones, starting from just after the 'W' or 'w' * * Emitted just before #TpDTMFPlayer::finished if a 'W' or 'w' character |