diff options
author | Matthias Kortstiege <mkortstiege@users.noreply.github.com> | 2015-08-25 23:50:29 +0200 |
---|---|---|
committer | Matthias Kortstiege <mkortstiege@users.noreply.github.com> | 2015-08-25 23:50:29 +0200 |
commit | 6e33ea7129d9e35c89c31dce04332abc82be4eec (patch) | |
tree | 46c42815edd89a01eaebbbec085eead33be0b773 | |
parent | 334c2cf2424adcd6f597661ad7619d91801500be (diff) | |
parent | f93bcc6e1a53cfb75f949b6630372fc561ba161d (diff) |
Merge pull request #7894 from anaconda/isengard-fix-7886
[Isengard] Fix build after PR 7886.
-rw-r--r-- | xbmc/LangInfo.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xbmc/LangInfo.cpp b/xbmc/LangInfo.cpp index 2132460042..c0c7034416 100644 --- a/xbmc/LangInfo.cpp +++ b/xbmc/LangInfo.cpp @@ -956,7 +956,7 @@ void CLangInfo::SetCurrentRegion(const std::string& strName) Set24HourClock(m_currentRegion->m_strTimeFormat); // update the time format - SetTimeFormat(CSettings::GetInstance().GetString("locale.timeformat")); + SetTimeFormat(CSettings::Get().GetString("locale.timeformat")); } if (CSettings::Get().GetString("locale.timeformat") == SETTING_REGIONAL_DEFAULT) SetTimeFormat(m_currentRegion->m_strTimeFormat); |