diff options
author | Matthew Barnes <mbarnes@redhat.com> | 2011-02-19 08:35:59 +0800 |
---|---|---|
committer | Matthew Barnes <mbarnes@redhat.com> | 2011-02-19 09:44:24 +0800 |
commit | fcb29478f605deb787c62fc7567c5c7f897585bb (patch) | |
tree | ec765625b528f38d34c0b1795abb588227b1d95b /e-util/e-alert-dialog.c | |
parent | 1b25ab52f7709a0eae7493fb933fa62376ead288 (diff) | |
download | gsoc2013-evolution-fcb29478f605deb787c62fc7567c5c7f897585bb.tar.gz gsoc2013-evolution-fcb29478f605deb787c62fc7567c5c7f897585bb.tar.zst gsoc2013-evolution-fcb29478f605deb787c62fc7567c5c7f897585bb.zip |
Coding style and whitespace cleanup.
Diffstat (limited to 'e-util/e-alert-dialog.c')
-rw-r--r-- | e-util/e-alert-dialog.c | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/e-util/e-alert-dialog.c b/e-util/e-alert-dialog.c index f714574b01..e9fea52052 100644 --- a/e-util/e-alert-dialog.c +++ b/e-util/e-alert-dialog.c @@ -121,6 +121,7 @@ alert_dialog_constructed (GObject *object) GList *actions; const gchar *primary, *secondary; gint min_width = -1, prefer_width = -1; + gint height; /* Chain up to parent's constructed() method. */ G_OBJECT_CLASS (e_alert_dialog_parent_class)->constructed (object); @@ -219,9 +220,14 @@ alert_dialog_constructed (GObject *object) widget = GTK_WIDGET (dialog); - gtk_widget_get_preferred_width_for_height (widget, gtk_widget_get_allocated_height (widget), &min_width, &prefer_width); + height = gtk_widget_get_allocated_height (widget); + gtk_widget_get_preferred_width_for_height ( + widget, height, &min_width, &prefer_width); if (min_width < prefer_width) - gtk_window_set_default_size (GTK_WINDOW (dialog), MIN ((min_width + prefer_width) / 2, min_width * 5 / 4), -1); + gtk_window_set_default_size ( + GTK_WINDOW (dialog), MIN ( + (min_width + prefer_width) / 2, + min_width * 5 / 4), -1); pango_attr_list_unref (list); } |