Rename initialise to initialize

This commit is contained in:
Jonas Kvinge
2020-10-17 17:29:09 +02:00
parent 5b21118a8c
commit b6693a71f9
43 changed files with 114 additions and 117 deletions

View File

@@ -70,8 +70,8 @@ void DeviceFinders::Init() {
#endif
for (DeviceFinder *finder : device_finders) {
if (!finder->Initialise()) {
qLog(Warning) << "Failed to initialise DeviceFinder for" << finder->name();
if (!finder->Initialize()) {
qLog(Warning) << "Failed to initialize DeviceFinder for" << finder->name();
delete finder;
continue;
}