diff options
author | Charles Kerr <charles.kerr@canonical.com> | 2014-01-27 01:25:07 -0600 |
---|---|---|
committer | Charles Kerr <charles.kerr@canonical.com> | 2014-01-27 01:25:07 -0600 |
commit | a268daf59f5b3a8ccd99f2b821a4c7cbcca3ccbc (patch) | |
tree | 06f73909e6ff7d804afd0c3d9c50691e1db8ce6e /src/utils.cpp | |
parent | c1ffb9cd6082acb7aa7e820a7ed852adc7ae648d (diff) | |
download | ayatana-indicator-datetime-a268daf59f5b3a8ccd99f2b821a4c7cbcca3ccbc.tar.gz ayatana-indicator-datetime-a268daf59f5b3a8ccd99f2b821a4c7cbcca3ccbc.tar.bz2 ayatana-indicator-datetime-a268daf59f5b3a8ccd99f2b821a4c7cbcca3ccbc.zip |
remove code duplication between formatter.cpp and utils.cpp
Diffstat (limited to 'src/utils.cpp')
-rw-r--r-- | src/utils.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/utils.cpp b/src/utils.cpp index 0b586f4..e97b654 100644 --- a/src/utils.cpp +++ b/src/utils.cpp @@ -38,11 +38,11 @@ with this program. If not, see <http://www.gnu.org/licenses/>. gboolean is_locale_12h() { - const char *t_fmt = nl_langinfo(T_FMT); - static const char *formats_24h[] = {"%H", "%R", "%T", "%OH", "%k"}; - for(const auto& format : formats_24h) - if(strstr(t_fmt, format) != nullptr) + const auto t_fmt = nl_langinfo(T_FMT); + + for (const auto& needle : formats_24h) + if (strstr(t_fmt, needle) != nullptr) return false; return true; |