diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2011-08-16 23:25:56 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@gnome-db.org> | 2011-09-14 20:09:00 +0800 |
commit | 777c1cbd40eb63365f2c28e38f6a93beb2d1c9d1 (patch) | |
tree | dfab9ca8f30c7b1539f86dfe19b8bf761d6a899c /e-util/e-dialog-widgets.c | |
parent | 83675abbc2b3a3bc6421094a56651d021fc0cdcd (diff) | |
download | gsoc2013-evolution-777c1cbd40eb63365f2c28e38f6a93beb2d1c9d1.tar.gz gsoc2013-evolution-777c1cbd40eb63365f2c28e38f6a93beb2d1c9d1.tar.zst gsoc2013-evolution-777c1cbd40eb63365f2c28e38f6a93beb2d1c9d1.zip |
Coding style and whitespace cleanup.
Diffstat (limited to 'e-util/e-dialog-widgets.c')
-rw-r--r-- | e-util/e-dialog-widgets.c | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/e-util/e-dialog-widgets.c b/e-util/e-dialog-widgets.c index 60867315b0..12034f96f2 100644 --- a/e-util/e-dialog-widgets.c +++ b/e-util/e-dialog-widgets.c @@ -37,7 +37,8 @@ * values for the items are provided as a -1-terminated array. */ static gint -value_to_index (const gint *value_map, gint value) +value_to_index (const gint *value_map, + gint value) { gint i; @@ -52,7 +53,8 @@ value_to_index (const gint *value_map, gint value) * function above. */ static gint -index_to_value (const gint *value_map, gint index) +index_to_value (const gint *value_map, + gint index) { gint i; @@ -75,7 +77,8 @@ index_to_value (const gint *value_map, gint index) * Sets the string value inside a #GtkEditable-derived widget. **/ void -e_dialog_editable_set (GtkWidget *widget, const gchar *value) +e_dialog_editable_set (GtkWidget *widget, + const gchar *value) { gint pos = 0; @@ -116,7 +119,9 @@ e_dialog_editable_get (GtkWidget *widget) * indices. **/ void -e_dialog_combo_box_set (GtkWidget *widget, gint value, const gint *value_map) +e_dialog_combo_box_set (GtkWidget *widget, + gint value, + const gint *value_map) { gint i; @@ -146,7 +151,8 @@ e_dialog_combo_box_set (GtkWidget *widget, gint value, const gint *value_map) * combo box. **/ gint -e_dialog_combo_box_get (GtkWidget *widget, const gint *value_map) +e_dialog_combo_box_get (GtkWidget *widget, + const gint *value_map) { gint active; gint i; |