demos: Avoid shadowing a global from time.h

Sad but true.
This commit is contained in:
Timm Bäder 2020-06-05 06:26:25 +02:00
parent 1f7adfd9ff
commit 8bee3e2fe0
2 changed files with 5 additions and 5 deletions

View File

@ -309,16 +309,16 @@ gtk_clock_init (GtkClock *self)
static GtkClock *
gtk_clock_new (const char *location,
GTimeZone *timezone)
GTimeZone *_timezone)
{
GtkClock *result;
result = g_object_new (GTK_TYPE_CLOCK,
"location", location,
"timezone", timezone,
"timezone", _timezone,
NULL);
g_clear_pointer (&timezone, g_time_zone_unref);
g_clear_pointer (&_timezone, g_time_zone_unref);
return result;
}

View File

@ -78,13 +78,13 @@ gtk_weather_info_new (GDateTime *timestamp,
static GDateTime *
parse_timestamp (const char *string,
GTimeZone *timezone)
GTimeZone *_timezone)
{
char *with_seconds;
GDateTime *result;
with_seconds = g_strconcat (string, ":00", NULL);
result = g_date_time_new_from_iso8601 (with_seconds, timezone);
result = g_date_time_new_from_iso8601 (with_seconds, _timezone);
g_free (with_seconds);
return result;