aboutsummaryrefslogtreecommitdiffstats
path: root/modules
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2013-12-07 22:30:49 +0800
committerMatthew Barnes <mbarnes@redhat.com>2013-12-07 23:04:45 +0800
commit7b98c39b0adecc942c091d293032851149107dbc (patch)
tree8588a63b94eebcb0ad06cab29dee3ee5474e4d3e /modules
parentc9edf5ef1f8cba1556fabfa9234b5cb155b59ceb (diff)
downloadgsoc2013-evolution-7b98c39b0adecc942c091d293032851149107dbc.tar
gsoc2013-evolution-7b98c39b0adecc942c091d293032851149107dbc.tar.gz
gsoc2013-evolution-7b98c39b0adecc942c091d293032851149107dbc.tar.bz2
gsoc2013-evolution-7b98c39b0adecc942c091d293032851149107dbc.tar.lz
gsoc2013-evolution-7b98c39b0adecc942c091d293032851149107dbc.tar.xz
gsoc2013-evolution-7b98c39b0adecc942c091d293032851149107dbc.tar.zst
gsoc2013-evolution-7b98c39b0adecc942c091d293032851149107dbc.zip
Coding style and whitespace cleanup.
Diffstat (limited to 'modules')
-rw-r--r--modules/cal-config-weather/evolution-cal-config-weather.c36
-rw-r--r--modules/calendar/e-cal-shell-view-private.c10
-rw-r--r--modules/itip-formatter/itip-view.c2
3 files changed, 28 insertions, 20 deletions
diff --git a/modules/cal-config-weather/evolution-cal-config-weather.c b/modules/cal-config-weather/evolution-cal-config-weather.c
index 25b3c2bda0..1e4160dc8d 100644
--- a/modules/cal-config-weather/evolution-cal-config-weather.c
+++ b/modules/cal-config-weather/evolution-cal-config-weather.c
@@ -79,7 +79,8 @@ cal_config_weather_location_to_string (GBinding *binding,
if (location) {
gdouble latitude, longitude;
- gchar lat_str[G_ASCII_DTOSTR_BUF_SIZE + 1], lon_str[G_ASCII_DTOSTR_BUF_SIZE + 1];
+ gchar lat_str[G_ASCII_DTOSTR_BUF_SIZE + 1];
+ gchar lon_str[G_ASCII_DTOSTR_BUF_SIZE + 1];
gweather_location_get_coords (location, &latitude, &longitude);
@@ -96,13 +97,13 @@ cal_config_weather_location_to_string (GBinding *binding,
static GWeatherLocation *
cal_config_weather_find_location_by_coords (GWeatherLocation *start,
- gdouble latitude,
- gdouble longitude)
+ gdouble latitude,
+ gdouble longitude)
{
GWeatherLocation *location, **children;
gint ii;
- if (!start)
+ if (start == NULL)
return NULL;
location = start;
@@ -117,8 +118,9 @@ cal_config_weather_find_location_by_coords (GWeatherLocation *start,
children = gweather_location_get_children (location);
for (ii = 0; children[ii]; ii++) {
- location = cal_config_weather_find_location_by_coords (children[ii], latitude, longitude);
- if (location)
+ location = cal_config_weather_find_location_by_coords (
+ children[ii], latitude, longitude);
+ if (location != NULL)
return location;
}
@@ -154,7 +156,8 @@ cal_config_weather_string_to_location (GBinding *binding,
latitude = g_ascii_strtod (tokens[0], NULL);
longitude = g_ascii_strtod (tokens[1], NULL);
- match = cal_config_weather_find_location_by_coords (world, latitude, longitude);
+ match = cal_config_weather_find_location_by_coords (
+ world, latitude, longitude);
g_value_set_boxed (target_value, match);
@@ -167,7 +170,7 @@ cal_config_weather_string_to_location (GBinding *binding,
static gboolean
is_locale_metric (void)
{
- const char *fmt;
+ const gchar *fmt;
fmt = nl_langinfo (_NL_MEASUREMENT_MEASUREMENT);
if (fmt && *fmt == 2)
@@ -179,7 +182,7 @@ is_locale_metric (void)
static ESourceWeatherUnits
cal_config_weather_get_units_from_locale (void)
{
- return is_locale_metric() ?
+ return is_locale_metric () ?
E_SOURCE_WEATHER_UNITS_CENTIGRADE :
E_SOURCE_WEATHER_UNITS_FAHRENHEIT;
}
@@ -211,11 +214,13 @@ cal_config_weather_insert_widgets (ESourceConfigBackend *backend,
GWeatherLocation *world;
GtkWidget *widget;
Context *context;
+ const gchar *extension_name;
const gchar *uid;
#if HAVE_NL_LANGINFO
gboolean is_new_source;
- is_new_source = !e_source_has_extension (scratch_source, E_SOURCE_EXTENSION_WEATHER_BACKEND);
+ is_new_source = !e_source_has_extension (
+ scratch_source, E_SOURCE_EXTENSION_WEATHER_BACKEND);
#endif
context = g_slice_new (Context);
@@ -241,15 +246,17 @@ cal_config_weather_insert_widgets (ESourceConfigBackend *backend,
/* keep the same order as in the ESourceWeatherUnits */
gtk_combo_box_text_append_text (
GTK_COMBO_BOX_TEXT (widget),
- /* TRANSLATOR: This is the temperature in degrees Fahrenheit (\302\260 is U+00B0 DEGREE SIGN) */
+ /* Translators: This is the temperature in degrees
+ * Fahrenheit. (\302\260 is U+00B0 DEGREE SIGN) */
_("Fahrenheit (\302\260F)"));
gtk_combo_box_text_append_text (
GTK_COMBO_BOX_TEXT (widget),
- /* TRANSLATOR: This is the temperature in degrees Celsius (\302\260 is U+00B0 DEGREE SIGN) */
+ /* Translators: This is the temperature in degrees
+ * Celsius. (\302\260 is U+00B0 DEGREE SIGN) */
_("Centigrade (\302\260C)"));
gtk_combo_box_text_append_text (
GTK_COMBO_BOX_TEXT (widget),
- /* TRANSLATOR: This is the temperature in kelvin */
+ /* Translators: This is the temperature in kelvin. */
_("Kelvin (K)"));
e_source_config_insert_widget (
config, scratch_source, _("Units:"), widget);
@@ -257,7 +264,8 @@ cal_config_weather_insert_widgets (ESourceConfigBackend *backend,
e_source_config_add_refresh_interval (config, scratch_source);
- extension = e_source_get_extension (scratch_source, E_SOURCE_EXTENSION_WEATHER_BACKEND);
+ extension_name = E_SOURCE_EXTENSION_WEATHER_BACKEND;
+ extension = e_source_get_extension (scratch_source, extension_name);
#if HAVE_NL_LANGINFO
if (is_new_source)
diff --git a/modules/calendar/e-cal-shell-view-private.c b/modules/calendar/e-cal-shell-view-private.c
index c03b3e3b00..581ef162a9 100644
--- a/modules/calendar/e-cal-shell-view-private.c
+++ b/modules/calendar/e-cal-shell-view-private.c
@@ -995,9 +995,9 @@ e_cal_shell_view_set_status_message (ECalShellView *cal_shell_view,
static void
cal_transferring_update_alert (ECalShellView *cal_shell_view,
- const gchar *domain,
- const gchar *calendar,
- const gchar *message)
+ const gchar *domain,
+ const gchar *calendar,
+ const gchar *message)
{
ECalShellViewPrivate *priv;
EShellContent *shell_content;
@@ -1039,8 +1039,8 @@ typedef struct _TransferItemToData {
static void
transfer_item_to_cb (GObject *src_object,
- GAsyncResult *result,
- gpointer user_data)
+ GAsyncResult *result,
+ gpointer user_data)
{
TransferItemToData *titd = user_data;
GError *error = NULL;
diff --git a/modules/itip-formatter/itip-view.c b/modules/itip-formatter/itip-view.c
index 0759285d1a..62ef4fe1f0 100644
--- a/modules/itip-formatter/itip-view.c
+++ b/modules/itip-formatter/itip-view.c
@@ -910,7 +910,7 @@ append_info_item_row (ItipView *view,
id = g_strdup_printf ("%s_row_%d", table_id, item->id);
#if WEBKIT_CHECK_VERSION(2,2,0) /* XXX should really be (2,1,something) */
- webkit_dom_element_set_id (WEBKIT_DOM_ELEMENT(row), id);
+ webkit_dom_element_set_id (WEBKIT_DOM_ELEMENT (row), id);
#else
webkit_dom_html_element_set_id (row, id);
#endif