aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/recent.c
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2009-12-09 16:16:04 +0000
committerStig Bjørlykke <stig@bjorlykke.org>2009-12-09 16:16:04 +0000
commit5333f8ac36961201b9496b3fdd7af7c6a0085476 (patch)
tree767e28a1edc7261f08e9fa90f4df4ce23bb6df3f /gtk/recent.c
parentf10882a1f8bc752d9bd9fbe9cbc9e22cb0665587 (diff)
Cleanup some column alignment code.
svn path=/trunk/; revision=31217
Diffstat (limited to 'gtk/recent.c')
-rw-r--r--gtk/recent.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk/recent.c b/gtk/recent.c
index 797c747242..bb062d7325 100644
--- a/gtk/recent.c
+++ b/gtk/recent.c
@@ -703,7 +703,7 @@ read_set_recent_pair_static(gchar *key, gchar *value, void *private_data _U_)
if (*p == ':') {
cfmt->xalign = *(++p);
} else {
- cfmt->xalign = 0;
+ cfmt->xalign = COLUMN_XALIGN_DEFAULT;
}
col_l_elt = col_l_elt->next;
@@ -1002,7 +1002,7 @@ recent_set_column_width(gint col, gint width)
col_w->cfield = NULL;
}
col_w->width = width;
- col_w->xalign = 0;
+ col_w->xalign = COLUMN_XALIGN_DEFAULT;
recent.col_width_list = g_list_append(recent.col_width_list, col_w);
}
}