Fix add_room_tag prototype and vfunc

This commit is contained in:
Gergely Polonkai 2016-01-16 15:24:11 +01:00
parent 1cdda64f47
commit 2dfdb754f3
2 changed files with 2 additions and 2 deletions

View File

@ -2092,7 +2092,7 @@ matrix_api_delete_room_tag(MatrixAPI *api,
* @user_id: the ID of the user to add the tag for
* @room_id: the ID of the room to add the tag for
* @tag: the tag to add
* @content: extra data for the tag, e.g. ordering
* @content: (transfer full): extra data for the tag, e.g. ordering
* @error: return location for a #GError, or %NULL
*
* Add a tag to the room.

View File

@ -456,7 +456,7 @@ struct _MatrixAPIInterface {
const gchar *user_id,
const gchar *room_id,
const gchar *tag,
const JsonNode *content,
JsonNode *content,
GError **error);
/* VoIP */