aboutsummaryrefslogtreecommitdiffstats
path: root/widgets/table/e-table-col.c
diff options
context:
space:
mode:
authorMiguel de Icaza <miguel@src.gnome.org>2000-03-30 09:35:18 +0800
committerMiguel de Icaza <miguel@src.gnome.org>2000-03-30 09:35:18 +0800
commita02608b0784912bebfd13c888cd1f0b32ed3c5e3 (patch)
tree73de4a81330902fb49e6a5fdf82bd7b61ca6a50a /widgets/table/e-table-col.c
parent88674ff4013f5b62ecaeaf8021b8f710067b8598 (diff)
downloadgsoc2013-evolution-a02608b0784912bebfd13c888cd1f0b32ed3c5e3.tar
gsoc2013-evolution-a02608b0784912bebfd13c888cd1f0b32ed3c5e3.tar.gz
gsoc2013-evolution-a02608b0784912bebfd13c888cd1f0b32ed3c5e3.tar.bz2
gsoc2013-evolution-a02608b0784912bebfd13c888cd1f0b32ed3c5e3.tar.lz
gsoc2013-evolution-a02608b0784912bebfd13c888cd1f0b32ed3c5e3.tar.xz
gsoc2013-evolution-a02608b0784912bebfd13c888cd1f0b32ed3c5e3.tar.zst
gsoc2013-evolution-a02608b0784912bebfd13c888cd1f0b32ed3c5e3.zip
Fix indentation
svn path=/trunk/; revision=2252
Diffstat (limited to 'widgets/table/e-table-col.c')
-rw-r--r--widgets/table/e-table-col.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/widgets/table/e-table-col.c b/widgets/table/e-table-col.c
index 457830843d..4e94a33279 100644
--- a/widgets/table/e-table-col.c
+++ b/widgets/table/e-table-col.c
@@ -22,10 +22,10 @@ etc_destroy (GtkObject *object)
{
ETableCol *etc = E_TABLE_COL (object);
- gtk_object_unref( GTK_OBJECT(etc->ecell) );
+ gtk_object_unref (GTK_OBJECT(etc->ecell));
- if ( etc->is_pixbuf )
- gdk_pixbuf_unref( etc->pixbuf );
+ if (etc->is_pixbuf)
+ gdk_pixbuf_unref (etc->pixbuf);
else
g_free (etc->text);
@@ -69,7 +69,7 @@ e_table_col_new (int col_idx, const char *text, int width, int min_width,
etc->selected = 0;
etc->resizeable = resizable;
- gtk_object_ref(GTK_OBJECT(etc->ecell));
+ gtk_object_ref (GTK_OBJECT(etc->ecell));
return etc;
}
@@ -102,7 +102,7 @@ e_table_col_new_with_pixbuf (int col_idx, GdkPixbuf *pixbuf, int width, int min_
etc->selected = 0;
etc->resizeable = resizable;
- gdk_pixbuf_ref(etc->pixbuf);
+ gdk_pixbuf_ref (etc->pixbuf);
return etc;
}