diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2013-07-28 10:39:37 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2013-07-28 10:39:37 +0800 |
commit | 8fe17523da287ebf38278da806b4be6b3b838d15 (patch) | |
tree | 394adf4c97e066014f8f94bb9640f46493505762 /addressbook/gui | |
parent | 08f6274a49e4eaf478dfb6d50463f69ff67c62d7 (diff) | |
download | gsoc2013-evolution-8fe17523da287ebf38278da806b4be6b3b838d15.tar gsoc2013-evolution-8fe17523da287ebf38278da806b4be6b3b838d15.tar.gz gsoc2013-evolution-8fe17523da287ebf38278da806b4be6b3b838d15.tar.bz2 gsoc2013-evolution-8fe17523da287ebf38278da806b4be6b3b838d15.tar.lz gsoc2013-evolution-8fe17523da287ebf38278da806b4be6b3b838d15.tar.xz gsoc2013-evolution-8fe17523da287ebf38278da806b4be6b3b838d15.tar.zst gsoc2013-evolution-8fe17523da287ebf38278da806b4be6b3b838d15.zip |
Miscellaneous cleanups.
Diffstat (limited to 'addressbook/gui')
-rw-r--r-- | addressbook/gui/widgets/ea-minicard-view.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/addressbook/gui/widgets/ea-minicard-view.c b/addressbook/gui/widgets/ea-minicard-view.c index 0362b3cf91..d1592df69e 100644 --- a/addressbook/gui/widgets/ea-minicard-view.c +++ b/addressbook/gui/widgets/ea-minicard-view.c @@ -273,9 +273,10 @@ ea_minicard_view_ref_child (AtkObject *accessible, if (index < child_num) { if (reflow->items[index] == NULL) { reflow->items[index] = e_reflow_model_incarnate (reflow->model, index, GNOME_CANVAS_GROUP (reflow)); - g_object_set (reflow->items[index], - "width", (double) reflow->column_width, - NULL); + g_object_set ( + reflow->items[index], + "width", (double) reflow->column_width, + NULL); } card = E_MINICARD (reflow->items[index]); atk_object = atk_gobject_accessible_for_object (G_OBJECT (card)); |