Change login’s type param to login_type

It is for not to clash with some languages (like Python).
This commit is contained in:
2016-01-21 15:24:30 +01:00
parent 5fc5a0e79d
commit cbfb0fbe72
3 changed files with 7 additions and 7 deletions

View File

@@ -368,7 +368,7 @@ struct _MatrixAPIInterface {
void (*login)(MatrixAPI *api,
MatrixAPICallback callback,
gpointer user_data,
const gchar *type,
const gchar *login_type,
const JsonNode *content,
GError **error);
void (*token_refresh)(MatrixAPI *api,
@@ -789,7 +789,7 @@ void matrix_api_versions(MatrixAPI *api,
void matrix_api_login(MatrixAPI *api,
MatrixAPICallback callback,
gpointer user_data,
const gchar *type,
const gchar *login_type,
const JsonNode *content,
GError **error);
void matrix_api_token_refresh(MatrixAPI *api,