diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2011-01-29 23:50:53 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@gnome-db.org> | 2011-06-30 00:41:29 +0800 |
commit | 6af0c53b697c6981c1470c177b2c37e081635258 (patch) | |
tree | 35acd2868077859124e55626ba95f2599f1fdc5c /e-util | |
parent | 5c0b316904b9463623e7d8976e7ef43662b55765 (diff) | |
download | gsoc2013-evolution-6af0c53b697c6981c1470c177b2c37e081635258.tar.gz gsoc2013-evolution-6af0c53b697c6981c1470c177b2c37e081635258.tar.zst gsoc2013-evolution-6af0c53b697c6981c1470c177b2c37e081635258.zip |
Coding style and whitespace cleanup.
Diffstat (limited to 'e-util')
-rw-r--r-- | e-util/e-alert.c | 4 | ||||
-rw-r--r-- | e-util/e-dialog-widgets.c | 4 | ||||
-rw-r--r-- | e-util/e-sorter-array.c | 4 |
3 files changed, 8 insertions, 4 deletions
diff --git a/e-util/e-alert.c b/e-util/e-alert.c index f99ca51c57..4845ce61a3 100644 --- a/e-util/e-alert.c +++ b/e-util/e-alert.c @@ -496,8 +496,8 @@ alert_dispose (GObject *object) while (!g_queue_is_empty (&priv->actions)) { GtkAction *action = g_queue_pop_head (&priv->actions); - g_signal_handlers_disconnect_by_func (action, G_CALLBACK (alert_action_activate), object); - + g_signal_handlers_disconnect_by_func ( + action, G_CALLBACK (alert_action_activate), object); g_object_unref (action); } diff --git a/e-util/e-dialog-widgets.c b/e-util/e-dialog-widgets.c index 87821acd71..0948f2fb61 100644 --- a/e-util/e-dialog-widgets.c +++ b/e-util/e-dialog-widgets.c @@ -169,7 +169,9 @@ e_dialog_combo_box_get (GtkWidget *widget, const gint *value_map) * @text_value: A string to be added to the @list_store **/ void -e_dialog_append_list_store_text (GtkTreeModel *list_store, gint text_column, const gchar *text_value) +e_dialog_append_list_store_text (GtkTreeModel *list_store, + gint text_column, + const gchar *text_value) { GtkTreeIter iter; GtkListStore *store; diff --git a/e-util/e-sorter-array.c b/e-util/e-sorter-array.c index 3e559acb3a..808af66242 100644 --- a/e-util/e-sorter-array.c +++ b/e-util/e-sorter-array.c @@ -245,7 +245,9 @@ e_sorter_array_construct (ESorterArray *esa, } ESorterArray * -e_sorter_array_new (ECreateCmpCacheFunc create_cmp_cache, ECompareRowsFunc compare, gpointer closure) +e_sorter_array_new (ECreateCmpCacheFunc create_cmp_cache, + ECompareRowsFunc compare, + gpointer closure) { ESorterArray *esa = g_object_new (E_SORTER_ARRAY_TYPE, NULL); |