mirror of https://github.com/GNOME/gimp.git
fix a typo (i where a j should be)
* app/iscissors.c: fix a typo (i where a j should be)
This commit is contained in:
parent
bf0a1c431c
commit
4f901c84da
|
@ -1,3 +1,6 @@
|
|||
Thu Mar 26 16L32:05 MST 1998 Nathan Summers <rock@gimp.org>
|
||||
* app/iscissors.c: fix a typo (i where a j should be)
|
||||
|
||||
Thu Mar 26 15:26:18 MST 1998 Nathan Summers <rock@gimp.org>
|
||||
* app/iscissors.c: This version works much better.
|
||||
outstanding bugs <VERY IMPORTANT>:
|
||||
|
|
|
@ -1327,9 +1327,9 @@ shape_of_boundary (Tool *tool)
|
|||
*/
|
||||
|
||||
if(j) {
|
||||
if((kinks[i].x != kinks[j-1].x) || (kinks[j].y != kinks[j-1].y))
|
||||
if((kinks[j].x != kinks[j-1].x) || (kinks[j].y != kinks[j-1].y))
|
||||
++j;
|
||||
} else ++j;
|
||||
} else j++;
|
||||
}
|
||||
|
||||
iscissors->num_kinks = j;
|
||||
|
|
|
@ -1327,9 +1327,9 @@ shape_of_boundary (Tool *tool)
|
|||
*/
|
||||
|
||||
if(j) {
|
||||
if((kinks[i].x != kinks[j-1].x) || (kinks[j].y != kinks[j-1].y))
|
||||
if((kinks[j].x != kinks[j-1].x) || (kinks[j].y != kinks[j-1].y))
|
||||
++j;
|
||||
} else ++j;
|
||||
} else j++;
|
||||
}
|
||||
|
||||
iscissors->num_kinks = j;
|
||||
|
|
|
@ -1327,9 +1327,9 @@ shape_of_boundary (Tool *tool)
|
|||
*/
|
||||
|
||||
if(j) {
|
||||
if((kinks[i].x != kinks[j-1].x) || (kinks[j].y != kinks[j-1].y))
|
||||
if((kinks[j].x != kinks[j-1].x) || (kinks[j].y != kinks[j-1].y))
|
||||
++j;
|
||||
} else ++j;
|
||||
} else j++;
|
||||
}
|
||||
|
||||
iscissors->num_kinks = j;
|
||||
|
|
Loading…
Reference in New Issue