From 343edf2722a9e114b98944c1147676e630e699b7 Mon Sep 17 00:00:00 2001 From: Campbell Barton Date: Sun, 29 Apr 2012 17:11:40 +0000 Subject: style cleanup: function calls & whitespace. --- source/blender/windowmanager/intern/wm_operators.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'source/blender/windowmanager/intern/wm_operators.c') diff --git a/source/blender/windowmanager/intern/wm_operators.c b/source/blender/windowmanager/intern/wm_operators.c index 7fbdce097a9..9ae0a88151c 100644 --- a/source/blender/windowmanager/intern/wm_operators.c +++ b/source/blender/windowmanager/intern/wm_operators.c @@ -2326,10 +2326,10 @@ static int border_apply_rect(wmOperator *op) /* operator arguments and storage. */ - RNA_int_set(op->ptr, "xmin", MIN2(rect->xmin, rect->xmax) ); - RNA_int_set(op->ptr, "ymin", MIN2(rect->ymin, rect->ymax) ); - RNA_int_set(op->ptr, "xmax", MAX2(rect->xmin, rect->xmax) ); - RNA_int_set(op->ptr, "ymax", MAX2(rect->ymin, rect->ymax) ); + RNA_int_set(op->ptr, "xmin", MIN2(rect->xmin, rect->xmax)); + RNA_int_set(op->ptr, "ymin", MIN2(rect->ymin, rect->ymax)); + RNA_int_set(op->ptr, "xmax", MAX2(rect->xmin, rect->xmax)); + RNA_int_set(op->ptr, "ymax", MAX2(rect->ymin, rect->ymax)); return 1; } -- cgit v1.2.3