From 401b716cf5143fa69603c1b20f95f3745b1046ed Mon Sep 17 00:00:00 2001 From: Jens Granseuer Date: Tue, 26 Feb 2008 20:47:29 +0000 Subject: [PATCH] reorder declarations so we don't break C89 compilers. Closes #518917. 2008-02-26 Jens Granseuer * src/core/constraints.c (constrain_aspect_ratio, constrain_size_limits, constrain_size_increments): reorder declarations so we don't break C89 compilers. Closes #518917. svn path=/trunk/; revision=3605 --- ChangeLog | 7 +++++++ src/core/constraints.c | 6 +++--- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/ChangeLog b/ChangeLog index 65b02bfd7..9e5e858f7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +2008-02-26 Jens Granseuer + + * src/core/constraints.c (constrain_aspect_ratio, + constrain_size_limits, constrain_size_increments): + reorder declarations so we don't break C89 compilers. + Closes #518917. + 2008-02-26 Thomas Thurman * configure.in: Post-release bump to 2.23.1. diff --git a/src/core/constraints.c b/src/core/constraints.c index e081347cf..c11d3902f 100644 --- a/src/core/constraints.c +++ b/src/core/constraints.c @@ -811,6 +811,7 @@ constrain_size_increments (MetaWindow *window, int bh, hi, bw, wi, extra_height, extra_width; int new_width, new_height; gboolean constraint_already_satisfied; + MetaRectangle *start_rect; if (priority > PRIORITY_SIZE_HINTS_INCREMENTS) return TRUE; @@ -855,7 +856,6 @@ constrain_size_increments (MetaWindow *window, /* Figure out what original rect to pass to meta_rectangle_resize_with_gravity * See bug 448183 */ - MetaRectangle *start_rect; if (info->action_type == ACTION_MOVE_AND_RESIZE) start_rect = &info->current; else @@ -879,6 +879,7 @@ constrain_size_limits (MetaWindow *window, MetaRectangle min_size, max_size; gboolean too_big, too_small, constraint_already_satisfied; int new_width, new_height; + MetaRectangle *start_rect; if (priority > PRIORITY_SIZE_HINTS_LIMITS) return TRUE; @@ -911,7 +912,6 @@ constrain_size_limits (MetaWindow *window, /* Figure out what original rect to pass to meta_rectangle_resize_with_gravity * See bug 448183 */ - MetaRectangle *start_rect; if (info->action_type == ACTION_MOVE_AND_RESIZE) start_rect = &info->current; else @@ -936,6 +936,7 @@ constrain_aspect_ratio (MetaWindow *window, int fudge, new_width, new_height; double best_width, best_height; double alt_width, alt_height; + MetaRectangle *start_rect; if (priority > PRIORITY_ASPECT_RATIO) return TRUE; @@ -1044,7 +1045,6 @@ constrain_aspect_ratio (MetaWindow *window, /* Figure out what original rect to pass to meta_rectangle_resize_with_gravity * See bug 448183 */ - MetaRectangle *start_rect; if (info->action_type == ACTION_MOVE_AND_RESIZE) start_rect = &info->current; else