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-map.c | |
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-map.c')
-rw-r--r-- | applets/clock/clock-map.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/applets/clock/clock-map.c b/applets/clock/clock-map.c index 0c371ca1..1aa2202e 100644 --- a/applets/clock/clock-map.c +++ b/applets/clock/clock-map.c @@ -100,7 +100,7 @@ clock_map_class_init (ClockMapClass *this_class) * The map widget emits this signal when it needs to know which * locations to display. * - * Returns: the handler should return a (GList *) of (ClockLocation *). + * Returns: the handler should return a (GSList *) of (ClockLocation *). * The map widget will not modify this list, so the caller should keep * it alive. */ @@ -429,7 +429,7 @@ static void clock_map_place_locations (ClockMap *this) { ClockMapPrivate *priv = clock_map_get_instance_private (this); - GList *locs; + GSList *locs; ClockLocation *loc; if (priv->location_map_pixbuf) { |