Hello community, here is the log from the commit of package kig for openSUSE:Factory checked in at 2014-10-16 18:12:17 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/kig (Old) and /work/SRC/openSUSE:Factory/.kig.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "kig" Changes: -------- --- /work/SRC/openSUSE:Factory/kig/kig.changes 2014-09-18 07:59:01.000000000 +0200 +++ /work/SRC/openSUSE:Factory/.kig.new/kig.changes 2014-10-16 18:12:53.000000000 +0200 @@ -1,0 +2,7 @@ +Sun Oct 12 12:04:45 UTC 2014 - tittiatcoke@gmail.com + +- Update to 4.14.2 + * KDE 4.14.2 SC Bugfix Release + * See http://www.kde.org/announcements/announce-4.14.2.php + +------------------------------------------------------------------- Old: ---- kig-4.14.1.tar.xz New: ---- kig-4.14.2.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ kig.spec ++++++ --- /var/tmp/diff_new_pack.fuvjEF/_old 2014-10-16 18:12:54.000000000 +0200 +++ /var/tmp/diff_new_pack.fuvjEF/_new 2014-10-16 18:12:54.000000000 +0200 @@ -17,7 +17,7 @@ Name: kig -Version: 4.14.1 +Version: 4.14.2 Release: 0 Summary: Interactive Geometry License: GPL-2.0+ ++++++ kig-4.14.1.tar.xz -> kig-4.14.2.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/kig-4.14.1/objects/curve_imp.cc new/kig-4.14.2/objects/curve_imp.cc --- old/kig-4.14.1/objects/curve_imp.cc 2014-08-13 08:03:26.000000000 +0200 +++ new/kig-4.14.2/objects/curve_imp.cc 2014-09-12 16:33:10.000000000 +0200 @@ -185,13 +185,10 @@ double fxm = getDist( xm, p, doc ); double x1,x2; - int j = 1; double mm[N+1]; mm[0] = fxm; -// while( j < N - 1 ) -// TODO: this function is under revision anyway... - while( j <= N ) + for(int j = 1; j < N + 1; j++) { // [x1,x2] is the range we're currently considering.. x1 = j * incr; @@ -203,7 +200,6 @@ xm=x1; fxm=mm1; } - j++; mm[j]=mm1; } if ( xm == 0.) @@ -229,8 +225,7 @@ xm=xm1; fxm=fxm1; } - j=1; - while (j <N -1 ) + for(int j = 1; j < N - 1; j++) { if (mm[j] < mm[j-1] && mm[j] < mm[j+1]) { @@ -246,7 +241,6 @@ } } } - j++; } return xm; } -- To unsubscribe, e-mail: opensuse-commit+unsubscribe@opensuse.org For additional commands, e-mail: opensuse-commit+help@opensuse.org