Remove const constraint from set_account_data’s content

This commit is contained in:
2016-01-16 14:37:57 +01:00
parent 2be41f0463
commit 0369b387c1
2 changed files with 4 additions and 4 deletions

View File

@@ -435,7 +435,7 @@ struct _MatrixAPIInterface {
const gchar *user_id,
const gchar *room_id,
const gchar *type,
const JsonNode *content,
JsonNode *content,
GError **error);
void (*get_room_tags)(MatrixAPI *api,
MatrixAPICallback callback,
@@ -856,7 +856,7 @@ void matrix_api_set_account_data(MatrixAPI *api,
const gchar *user_id,
const gchar *room_id,
const gchar *type,
const JsonNode *content,
JsonNode *content,
GError **error);
void matrix_api_get_room_tags(MatrixAPI *api,
MatrixAPICallback callback,