(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

@@ -270,7 +270,7 @@ void OBSBasicSettings::LoadServiceTypes()
ui->streamType->addItem(qName, qType);
}
type = obs_service_gettype(main->GetService());
type = obs_service_get_type(main->GetService());
SetComboByValue(ui->streamType, type);
}
@@ -331,7 +331,7 @@ void OBSBasicSettings::LoadStream1Settings()
{
QLayout *layout = ui->streamContainer->layout();
obs_service_t *service = main->GetService();
const char *type = obs_service_gettype(service);
const char *type = obs_service_get_type(service);
loading = true;