diff options
author | Matthias Kortstiege <mkortstiege@users.noreply.github.com> | 2015-07-10 08:23:10 +0200 |
---|---|---|
committer | Matthias Kortstiege <mkortstiege@users.noreply.github.com> | 2015-07-10 08:23:10 +0200 |
commit | 7df307187996571cfccc36e1a01e7201050110ed (patch) | |
tree | 449671d70f80a45105c57937407fcbade11b0b50 | |
parent | a6c686ba58a8aded6ad1db6ae6699d0719a2554b (diff) | |
parent | e8334b5ff706db5dc2f8b18c6777118752e4bd6f (diff) |
Merge pull request #7460 from hudokkow/langinfo_unused_method
[langinfo] Remove unused code
-rw-r--r-- | xbmc/LangInfo.cpp | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/xbmc/LangInfo.cpp b/xbmc/LangInfo.cpp index 92d134b902..48ffc76154 100644 --- a/xbmc/LangInfo.cpp +++ b/xbmc/LangInfo.cpp @@ -153,11 +153,6 @@ static std::string ToSettingTimeFormat(const CDateTime& time, const std::string& return StringUtils::Format(g_localizeStrings.Get(20036).c_str(), time.GetAsLocalizedTime(timeFormat, true).c_str(), timeFormat.c_str()); } -static std::string ToSettingTimeFormat(const CDateTime& time, bool use24HourClock, bool singleHour, bool meridiem) -{ - return ToSettingTimeFormat(time, ToTimeFormat(use24HourClock, singleHour, meridiem)); -} - static CTemperature::Unit StringToTemperatureUnit(const std::string& temperatureUnit) { std::string unit(temperatureUnit); |