diff options
author | monsta <[email protected]> | 2016-11-09 12:43:25 +0300 |
---|---|---|
committer | monsta <[email protected]> | 2016-11-09 12:43:25 +0300 |
commit | 4501110b3bf0d817b455549223bba64b301453ee (patch) | |
tree | 15df7739dbadd490f94ccb3e380ab2b63e7f1040 /applets/clock/clock-location.h | |
parent | aa5cbe39c5ee4d71ec2459bb24ad42ecdbaaebb6 (diff) | |
download | mate-panel-4501110b3bf0d817b455549223bba64b301453ee.tar.bz2 mate-panel-4501110b3bf0d817b455549223bba64b301453ee.tar.xz |
clock: fix indent somewhat
Diffstat (limited to 'applets/clock/clock-location.h')
-rw-r--r-- | applets/clock/clock-location.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/applets/clock/clock-location.h b/applets/clock/clock-location.h index 7b59d359..c12072ff 100644 --- a/applets/clock/clock-location.h +++ b/applets/clock/clock-location.h @@ -26,18 +26,18 @@ typedef struct { GObjectClass g_object_class; - void (* weather_updated) (ClockLocation *location, WeatherInfo *info); + void (* weather_updated) (ClockLocation *location, WeatherInfo *info); - void (* set_current) (ClockLocation *location); + void (* set_current) (ClockLocation *location); } ClockLocationClass; GType clock_location_get_type (void); ClockLocation *clock_location_new (const gchar *name, const gchar *city, - const gchar *timezone, - gfloat latitude, gfloat longitude, - const gchar *code, - WeatherPrefs *prefs); + const gchar *timezone, + gfloat latitude, gfloat longitude, + const gchar *code, + WeatherPrefs *prefs); ClockLocation *clock_location_find_and_ref (GList *locations, const gchar *name, @@ -67,16 +67,16 @@ void clock_location_localtime (ClockLocation *loc, struct tm *tm); gboolean clock_location_is_current (ClockLocation *loc); void clock_location_make_current (ClockLocation *loc, - GFunc callback, - gpointer data, - GDestroyNotify destroy); + GFunc callback, + gpointer data, + GDestroyNotify destroy); gboolean clock_location_is_current_timezone (ClockLocation *loc); const gchar *clock_location_get_weather_code (ClockLocation *loc); void clock_location_set_weather_code (ClockLocation *loc, const gchar *code); WeatherInfo *clock_location_get_weather_info (ClockLocation *loc); void clock_location_set_weather_prefs (ClockLocation *loc, - WeatherPrefs *weather_prefs); + WeatherPrefs *weather_prefs); glong clock_location_get_offset (ClockLocation *loc); |