aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/table/e-table-column-specification.c
diff options
context:
space:
mode:
authorMatthew Barnes <mbarnes@redhat.com>2010-09-11 23:50:51 +0800
committerMatthew Barnes <mbarnes@redhat.com>2010-09-12 02:14:04 +0800
commitebcce86769d174cce6e881740c5e9bcedce28e06 (patch)
treeb2cc2d18ceb0c3bd3e78f5b768c1b6926b69bb4a /widgets/table/e-table-column-specification.c
parent1e3deb31476cf0026011876327be83e9a47847ee (diff)
downloadgsoc2013-evolution-ebcce86769d174cce6e881740c5e9bcedce28e06.tar
gsoc2013-evolution-ebcce86769d174cce6e881740c5e9bcedce28e06.tar.gz
gsoc2013-evolution-ebcce86769d174cce6e881740c5e9bcedce28e06.tar.bz2
gsoc2013-evolution-ebcce86769d174cce6e881740c5e9bcedce28e06.tar.lz
gsoc2013-evolution-ebcce86769d174cce6e881740c5e9bcedce28e06.tar.xz
gsoc2013-evolution-ebcce86769d174cce6e881740c5e9bcedce28e06.tar.zst
gsoc2013-evolution-ebcce86769d174cce6e881740c5e9bcedce28e06.zip
Coding style and whitespace cleanups.
Diffstat (limited to 'widgets/table/e-table-column-specification.c')
-rw-r--r--widgets/table/e-table-column-specification.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/widgets/table/e-table-column-specification.c b/widgets/table/e-table-column-specification.c
index 0f6acd7fc6..e4e642db4f 100644
--- a/widgets/table/e-table-column-specification.c
+++ b/widgets/table/e-table-column-specification.c
@@ -41,15 +41,15 @@ G_DEFINE_TYPE (ETableColumnSpecification, etcs, G_TYPE_OBJECT)
static void
free_strings (ETableColumnSpecification *etcs)
{
- g_free(etcs->title);
+ g_free (etcs->title);
etcs->title = NULL;
- g_free(etcs->pixbuf);
+ g_free (etcs->pixbuf);
etcs->pixbuf = NULL;
- g_free(etcs->cell);
+ g_free (etcs->cell);
etcs->cell = NULL;
- g_free(etcs->compare);
+ g_free (etcs->compare);
etcs->compare = NULL;
- g_free(etcs->search);
+ g_free (etcs->search);
etcs->search = NULL;
g_free (etcs->sortable);
etcs->sortable = NULL;
@@ -60,7 +60,7 @@ etcs_finalize (GObject *object)
{
ETableColumnSpecification *etcs = E_TABLE_COLUMN_SPECIFICATION (object);
- free_strings(etcs);
+ free_strings (etcs);
G_OBJECT_CLASS (etcs_parent_class)->finalize (object);
}
@@ -104,7 +104,7 @@ void
e_table_column_specification_load_from_node (ETableColumnSpecification *etcs,
const xmlNode *node)
{
- free_strings(etcs);
+ free_strings (etcs);
etcs->model_col = e_xml_get_integer_prop_by_name (node, (const guchar *)"model_col");
etcs->compare_col = e_xml_get_integer_prop_by_name_with_default (node, (const guchar *)"compare_col", etcs->model_col);