aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/table/e-table-selection-model.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2012-11-10 11:40:00 +0800
committerMatthew Barnes <mbarnes@redhat.com>2012-11-11 04:54:43 +0800
commit2c4ae5e7685c462f8d464448e4617b8dea029e72 (patch)
treec34f0cbb7c500ff70f10fce846631b0a948b341c /widgets/table/e-table-selection-model.c
parent583da46b8caf4b2a8b548b03c38fe0e84164abfb (diff)
downloadgsoc2013-evolution-2c4ae5e7685c462f8d464448e4617b8dea029e72.tar
gsoc2013-evolution-2c4ae5e7685c462f8d464448e4617b8dea029e72.tar.gz
gsoc2013-evolution-2c4ae5e7685c462f8d464448e4617b8dea029e72.tar.bz2
gsoc2013-evolution-2c4ae5e7685c462f8d464448e4617b8dea029e72.tar.lz
gsoc2013-evolution-2c4ae5e7685c462f8d464448e4617b8dea029e72.tar.xz
gsoc2013-evolution-2c4ae5e7685c462f8d464448e4617b8dea029e72.tar.zst
gsoc2013-evolution-2c4ae5e7685c462f8d464448e4617b8dea029e72.zip
Coding style and whitespace cleanup.
Diffstat (limited to 'widgets/table/e-table-selection-model.c')
-rw-r--r--widgets/table/e-table-selection-model.c69
1 files changed, 41 insertions, 28 deletions
diff --git a/widgets/table/e-table-selection-model.c b/widgets/table/e-table-selection-model.c
index 0320663e8e..2ee44a7ffe 100644
--- a/widgets/table/e-table-selection-model.c
+++ b/widgets/table/e-table-selection-model.c
@@ -80,9 +80,10 @@ model_pre_change (ETableModel *etm,
(GDestroyNotify) NULL);
e_selection_model_foreach (E_SELECTION_MODEL (etsm), save_to_hash, etsm);
- g_object_get (etsm,
- "cursor_row", &cursor_row,
- NULL);
+ g_object_get (
+ etsm,
+ "cursor_row", &cursor_row,
+ NULL);
g_free (etsm->cursor_id);
if (cursor_row != -1)
etsm->cursor_id = e_table_model_get_save_id (etm, cursor_row);
@@ -234,18 +235,24 @@ inline static void
drop_model (ETableSelectionModel *etsm)
{
if (etsm->model) {
- g_signal_handler_disconnect (G_OBJECT (etsm->model),
- etsm->model_pre_change_id);
- g_signal_handler_disconnect (G_OBJECT (etsm->model),
- etsm->model_changed_id);
- g_signal_handler_disconnect (G_OBJECT (etsm->model),
- etsm->model_row_changed_id);
- g_signal_handler_disconnect (G_OBJECT (etsm->model),
- etsm->model_cell_changed_id);
- g_signal_handler_disconnect (G_OBJECT (etsm->model),
- etsm->model_rows_inserted_id);
- g_signal_handler_disconnect (G_OBJECT (etsm->model),
- etsm->model_rows_deleted_id);
+ g_signal_handler_disconnect (
+ etsm->model,
+ etsm->model_pre_change_id);
+ g_signal_handler_disconnect (
+ etsm->model,
+ etsm->model_changed_id);
+ g_signal_handler_disconnect (
+ etsm->model,
+ etsm->model_row_changed_id);
+ g_signal_handler_disconnect (
+ etsm->model,
+ etsm->model_cell_changed_id);
+ g_signal_handler_disconnect (
+ etsm->model,
+ etsm->model_rows_inserted_id);
+ g_signal_handler_disconnect (
+ etsm->model,
+ etsm->model_rows_deleted_id);
g_object_unref (etsm->model);
}
@@ -332,19 +339,25 @@ e_table_selection_model_class_init (ETableSelectionModelClass *class)
esma_class->get_row_count = etsm_get_row_count;
- g_object_class_install_property (object_class, PROP_MODEL,
- g_param_spec_object ("model",
- "Model",
- NULL,
- E_TYPE_TABLE_MODEL,
- G_PARAM_READWRITE));
-
- g_object_class_install_property (object_class, PROP_HEADER,
- g_param_spec_object ("header",
- "Header",
- NULL,
- E_TYPE_TABLE_HEADER,
- G_PARAM_READWRITE));
+ g_object_class_install_property (
+ object_class,
+ PROP_MODEL,
+ g_param_spec_object (
+ "model",
+ "Model",
+ NULL,
+ E_TYPE_TABLE_MODEL,
+ G_PARAM_READWRITE));
+
+ g_object_class_install_property (
+ object_class,
+ PROP_HEADER,
+ g_param_spec_object (
+ "header",
+ "Header",
+ NULL,
+ E_TYPE_TABLE_HEADER,
+ G_PARAM_READWRITE));
}
/**