(API Change) Fix obs_service_gettype func name

Before:                After:
obs_service_gettype    obs_service_get_type

It seems there was an API function that was missed when we were doing
our big API consistency update.  Unsquishes obs_service_gettype to
obs_service_get_type.
This commit is contained in:
jp9000
2015-02-07 08:19:34 -08:00
parent 69c6714090
commit b72e68afe7
4 changed files with 5 additions and 5 deletions

View File

@@ -311,7 +311,7 @@ void OBSBasic::SaveService()
obs_data_t *data = obs_data_create();
obs_data_t *settings = obs_service_get_settings(service);
obs_data_set_string(data, "type", obs_service_gettype(service));
obs_data_set_string(data, "type", obs_service_get_type(service));
obs_data_set_obj(data, "settings", settings);
const char *json = obs_data_get_json(data);