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

@@ -110,7 +110,7 @@ int main(int argc, char* argv[]) {
#ifdef Q_OS_MACOS
// Do Mac specific startup to get media keys working.
// This must go before QApplication initialisation.
// This must go before QApplication initialization.
mac::MacMain();
#endif
@@ -134,7 +134,7 @@ int main(int argc, char* argv[]) {
RegisterMetaTypes();
// Initialise logging. Log levels are set after the commandline options are parsed below.
// Initialize logging. Log levels are set after the commandline options are parsed below.
logging::Init();
g_log_set_default_handler(reinterpret_cast<GLogFunc>(&logging::GLog), nullptr);