diff options
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); |