diff options
author | rbuj <[email protected]> | 2020-07-22 21:17:20 +0200 |
---|---|---|
committer | lukefromdc <[email protected]> | 2020-08-01 00:23:57 -0400 |
commit | 04e977defeb858ac58ab3d470ec735ec0e2ea922 (patch) | |
tree | 32dbb9446743cd0c1c416c279687e8b2d1ce6288 /applets/clock/clock-location.h | |
parent | 1d14ccccc6a44b348a0e166a947388d41a411e64 (diff) | |
download | mate-panel-04e977defeb858ac58ab3d470ec735ec0e2ea922.tar.bz2 mate-panel-04e977defeb858ac58ab3d470ec735ec0e2ea922.tar.xz |
clock: Use single-linked lists for locations
Diffstat (limited to 'applets/clock/clock-location.h')
-rw-r--r-- | applets/clock/clock-location.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/applets/clock/clock-location.h b/applets/clock/clock-location.h index c12072ff..9e56b5ca 100644 --- a/applets/clock/clock-location.h +++ b/applets/clock/clock-location.h @@ -39,7 +39,7 @@ ClockLocation *clock_location_new (const gchar *name, const gchar *city, const gchar *code, WeatherPrefs *prefs); -ClockLocation *clock_location_find_and_ref (GList *locations, +ClockLocation *clock_location_find_and_ref (GSList *locations, const gchar *name, const gchar *city, const gchar *timezone, |