Remove const constraint from send_message_event’s content

This commit is contained in:
2016-01-15 16:51:09 +01:00
parent f028ac838a
commit 11bd9002af
2 changed files with 4 additions and 4 deletions

View File

@@ -298,7 +298,7 @@ struct _MatrixAPIInterface {
const gchar *room_id,
const gchar *event_type,
const gchar *txn_id,
const JsonNode *content,
JsonNode *content,
GError **error);
void (*get_room_state)(MatrixAPI *api,
MatrixAPICallback callback,
@@ -715,7 +715,7 @@ void matrix_api_send_message_event(MatrixAPI *api,
const gchar *room_id,
const gchar *event_type,
const gchar *txn_id,
const JsonNode *content,
JsonNode *content,
GError **error);
void matrix_api_get_room_state(MatrixAPI *api,
MatrixAPICallback callback,