From 154e185df58900c50fe7ef133f431a1f0fff4d8a Mon Sep 17 00:00:00 2001 From: Sven Neumann Date: Thu, 17 Jul 2008 19:52:55 +0000 Subject: [PATCH] formatting. 2008-07-17 Sven Neumann * app/core/gimpcoords.c (gimp_coords_mix): formatting. svn path=/trunk/; revision=26229 --- ChangeLog | 2 ++ app/core/gimpcoords.c | 12 ++++++------ 2 files changed, 8 insertions(+), 6 deletions(-) diff --git a/ChangeLog b/ChangeLog index a037a09116..e128f43aa7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,7 @@ 2008-07-17 Sven Neumann + * app/core/gimpcoords.c (gimp_coords_mix): formatting. + * app/vectors/gimpbezierstroke.c: formatting. 2008-07-17 Sven Neumann diff --git a/app/core/gimpcoords.c b/app/core/gimpcoords.c index 8b8c22bd36..2b23155855 100644 --- a/app/core/gimpcoords.c +++ b/app/core/gimpcoords.c @@ -44,12 +44,12 @@ gimp_coords_mix (const gdouble amul, { if (b) { - ret_val->x = amul * a->x + bmul * b->x ; - ret_val->y = amul * a->y + bmul * b->y ; - ret_val->pressure = amul * a->pressure + bmul * b->pressure ; - ret_val->xtilt = amul * a->xtilt + bmul * b->xtilt ; - ret_val->ytilt = amul * a->ytilt + bmul * b->ytilt ; - ret_val->wheel = amul * a->wheel + bmul * b->wheel ; + ret_val->x = amul * a->x + bmul * b->x; + ret_val->y = amul * a->y + bmul * b->y; + ret_val->pressure = amul * a->pressure + bmul * b->pressure; + ret_val->xtilt = amul * a->xtilt + bmul * b->xtilt; + ret_val->ytilt = amul * a->ytilt + bmul * b->ytilt; + ret_val->wheel = amul * a->wheel + bmul * b->wheel; } else {