Change set_account_data’s type param to event_type

It is for not to clash with some languages (like Python)
This commit is contained in:
2016-01-16 15:06:22 +01:00
parent 0369b387c1
commit 8ce974e195
2 changed files with 6 additions and 6 deletions

View File

@@ -434,7 +434,7 @@ struct _MatrixAPIInterface {
gpointer user_data,
const gchar *user_id,
const gchar *room_id,
const gchar *type,
const gchar *event_type,
JsonNode *content,
GError **error);
void (*get_room_tags)(MatrixAPI *api,
@@ -855,7 +855,7 @@ void matrix_api_set_account_data(MatrixAPI *api,
gpointer user_data,
const gchar *user_id,
const gchar *room_id,
const gchar *type,
const gchar *event_type,
JsonNode *content,
GError **error);
void matrix_api_get_room_tags(MatrixAPI *api,