diff options
Diffstat (limited to 'e-util')
-rw-r--r-- | e-util/e-datetime-format.c | 4 | ||||
-rw-r--r-- | e-util/e-util.c | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/e-util/e-datetime-format.c b/e-util/e-datetime-format.c index 877b170218..a1fb490fdd 100644 --- a/e-util/e-datetime-format.c +++ b/e-util/e-datetime-format.c @@ -664,7 +664,9 @@ e_datetime_format_format_tm (const gchar *component, } gboolean -e_datetime_format_includes_day_name (const gchar *component, const gchar *part, DTFormatKind kind) +e_datetime_format_includes_day_name (const gchar *component, + const gchar *part, + DTFormatKind kind) { gchar *key; const gchar *fmt; diff --git a/e-util/e-util.c b/e-util/e-util.c index d41f43630e..0db804a618 100644 --- a/e-util/e-util.c +++ b/e-util/e-util.c @@ -1394,7 +1394,7 @@ e_binding_transform_color_to_string (GBinding *binding, g_value_set_string (target_value, ""); } else { /* encode color manually, because css styles expect colors in #rrggbb, - not in #rrrrggggbbbb, which is a result of gdk_color_to_string() + * not in #rrrrggggbbbb, which is a result of gdk_color_to_string() */ string = g_strdup_printf ("#%02x%02x%02x", (gint) color->red * 256 / 65536, |