aboutsummaryrefslogtreecommitdiff
path: root/src/locations-settings.cpp
diff options
context:
space:
mode:
authorRobert Tari <robert@tari.in>2021-12-16 13:06:08 +0100
committerMike Gabriel <mike.gabriel@das-netzwerkteam.de>2022-02-08 18:30:04 +0100
commit7f380782f57089b97a04125f18d61da05292d2ba (patch)
tree598701a52e7dda0954f62ee17432bc337967b8c4 /src/locations-settings.cpp
parentb7df5a9578ab32ac3c67fc8e0c0490d8bb286fb1 (diff)
downloadayatana-indicator-datetime-7f380782f57089b97a04125f18d61da05292d2ba.tar.gz
ayatana-indicator-datetime-7f380782f57089b97a04125f18d61da05292d2ba.tar.bz2
ayatana-indicator-datetime-7f380782f57089b97a04125f18d61da05292d2ba.zip
Fix cppcheck errors/warnings
Diffstat (limited to 'src/locations-settings.cpp')
-rw-r--r--src/locations-settings.cpp16
1 files changed, 9 insertions, 7 deletions
diff --git a/src/locations-settings.cpp b/src/locations-settings.cpp
index f1e2b42..2673e66 100644
--- a/src/locations-settings.cpp
+++ b/src/locations-settings.cpp
@@ -1,5 +1,6 @@
/*
* Copyright 2013 Canonical Ltd.
+ * Copyright 2021 Robert Tari
*
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU General Public License version 3, as published
@@ -15,6 +16,7 @@
*
* Authors:
* Charles Kerr <charles.kerr@canonical.com>
+ * Robert Tari <robert@tari.in>
*/
#include <datetime/locations-settings.h>
@@ -59,10 +61,10 @@ SettingsLocations::reload()
}
// add the other detected timezones
- for(const auto& zone : m_timezones->timezones.get())
+ for(const auto& sZone : m_timezones->timezones.get())
{
- gchar * name = get_beautified_timezone_name(zone.c_str(), timezone_name.c_str());
- Location l(zone, name);
+ gchar * name = get_beautified_timezone_name(sZone.c_str(), timezone_name.c_str());
+ Location l(sZone, name);
if (std::find(v.begin(), v.end(), l) == v.end())
v.push_back(l);
g_free(name);
@@ -73,14 +75,14 @@ SettingsLocations::reload()
{
for(const auto& locstr : m_settings->locations.get())
{
- gchar* zone;
+ gchar* sZone;
gchar* name;
- split_settings_location(locstr.c_str(), &zone, &name);
- Location loc(zone, name);
+ split_settings_location(locstr.c_str(), &sZone, &name);
+ Location loc(sZone, name);
if (std::find(v.begin(), v.end(), loc) == v.end())
v.push_back(loc);
g_free(name);
- g_free(zone);
+ g_free(sZone);
}
}