diff options
Diffstat (limited to 'xbmc/interfaces/legacy/LanguageHook.cpp')
-rw-r--r-- | xbmc/interfaces/legacy/LanguageHook.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/xbmc/interfaces/legacy/LanguageHook.cpp b/xbmc/interfaces/legacy/LanguageHook.cpp index 3ffab45bb5..70c5700570 100644 --- a/xbmc/interfaces/legacy/LanguageHook.cpp +++ b/xbmc/interfaces/legacy/LanguageHook.cpp @@ -28,8 +28,8 @@ namespace XBMCAddon LanguageHook::~LanguageHook() {} static XbmcThreads::ThreadLocal<LanguageHook> addonLanguageHookTls; - static bool threadLocalInitilialized = false; - static xbmcutil::InitFlag initer(threadLocalInitilialized); + static bool threadLocalInitialized = false; + static xbmcutil::InitFlag initer(threadLocalInitialized); void LanguageHook::SetLanguageHook(LanguageHook* languageHook) { @@ -40,7 +40,7 @@ namespace XBMCAddon LanguageHook* LanguageHook::GetLanguageHook() { - return threadLocalInitilialized ? addonLanguageHookTls.get() : NULL; + return threadLocalInitialized ? addonLanguageHookTls.get() : NULL; } void LanguageHook::ClearLanguageHook() |