aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorCharles Kerr <charles.kerr@canonical.com>2014-01-16 21:21:13 -0600
committerCharles Kerr <charles.kerr@canonical.com>2014-01-16 21:21:13 -0600
commit5e7433aabbe4b14327202ea1e9318bb8fd92d625 (patch)
tree858adc477a8c399878b45e69760bc3c0f6fd2cd5 /src
parent40689ea36c360cb6fb42048f5d93303237745b86 (diff)
downloadayatana-indicator-datetime-5e7433aabbe4b14327202ea1e9318bb8fd92d625.tar.gz
ayatana-indicator-datetime-5e7433aabbe4b14327202ea1e9318bb8fd92d625.tar.bz2
ayatana-indicator-datetime-5e7433aabbe4b14327202ea1e9318bb8fd92d625.zip
fix minor -Wshadow warnings
Diffstat (limited to 'src')
-rw-r--r--src/utils.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/utils.cpp b/src/utils.cpp
index bef8c2e..0b586f4 100644
--- a/src/utils.cpp
+++ b/src/utils.cpp
@@ -104,11 +104,11 @@ split_settings_location(const gchar* location, gchar** zone, gchar** name)
* on the "Oklahoma City" menuitem.
*/
gchar*
-get_beautified_timezone_name(const char* timezone, const char* saved_location)
+get_beautified_timezone_name(const char* timezone_, const char* saved_location)
{
gchar* zone;
gchar* name;
- split_settings_location(timezone, &zone, &name);
+ split_settings_location(timezone_, &zone, &name);
gchar* saved_zone;
gchar* saved_name;
@@ -134,10 +134,10 @@ get_beautified_timezone_name(const char* timezone, const char* saved_location)
}
gchar*
-get_timezone_name(const gchar* timezone, GSettings* settings)
+get_timezone_name(const gchar* timezone_, GSettings* settings)
{
auto saved_location = g_settings_get_string(settings, SETTINGS_TIMEZONE_NAME_S);
- auto rv = get_beautified_timezone_name(timezone, saved_location);
+ auto rv = get_beautified_timezone_name(timezone_, saved_location);
g_free(saved_location);
return rv;
}