aboutsummaryrefslogtreecommitdiff
path: root/xbmc/interfaces/legacy/LanguageHook.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'xbmc/interfaces/legacy/LanguageHook.cpp')
-rw-r--r--xbmc/interfaces/legacy/LanguageHook.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/xbmc/interfaces/legacy/LanguageHook.cpp b/xbmc/interfaces/legacy/LanguageHook.cpp
index 65db0853a7..3f0af14c8f 100644
--- a/xbmc/interfaces/legacy/LanguageHook.cpp
+++ b/xbmc/interfaces/legacy/LanguageHook.cpp
@@ -33,19 +33,19 @@ namespace XBMCAddon
static bool threadLocalInitilialized = false;
static xbmcutil::InitFlag initer(threadLocalInitilialized);
- void LanguageHook::setLanguageHook(LanguageHook* languageHook)
+ void LanguageHook::SetLanguageHook(LanguageHook* languageHook)
{
TRACE;
languageHook->Acquire();
addonLanguageHookTls.set(languageHook);
}
- LanguageHook* LanguageHook::getLanguageHook()
+ LanguageHook* LanguageHook::GetLanguageHook()
{
return threadLocalInitilialized ? addonLanguageHookTls.get() : NULL;
}
- void LanguageHook::clearLanguageHook()
+ void LanguageHook::ClearLanguageHook()
{
LanguageHook* lh = addonLanguageHookTls.get();
addonLanguageHookTls.set(NULL);