Difference between revisions of "BTP300A Team 5 Bugs Report"
Pavlo Kuzhel (talk | contribs) |
|||
Line 11: | Line 11: | ||
** FIXED ON 24/09 BY PAVLO. | ** FIXED ON 24/09 BY PAVLO. | ||
** changed if (...==NULL) to if(...) / else. | ** changed if (...==NULL) to if(...) / else. | ||
+ | * 27/09 2:00 pm (Friday), when using RIGHT key while the cursor on the last character of the string it moves one place and copies the last string character to current position (reported by Dimitri) |
Revision as of 13:15, 27 September 2013
- 9/09 4:00pm (Monday)
- Started development on Assignment 1
- 13/09 10:00am (Friday), error: name lookup of âiâ changed for ISO âforâ scoping(reported by Dimitri):
- FIXED ON 13/09 BY PAUL.
- Solution: "i" variable was declared inside "if" statment
- 24/09 9:00am (Tuesday),left arrow goes past the string and keep going left. String isn't modified when inputting keys/characters (reported by Pavlo):
- FIXED ON 24/09 BY PAVLO.
- better restricted the left-bound limit.
- added a line for modifying the string.
- 24/09 9:30am (Tuesday),two compiler warnings: NULL used in arithmetic [-Wpointer-arith]
- FIXED ON 24/09 BY PAVLO.
- changed if (...==NULL) to if(...) / else.
- 27/09 2:00 pm (Friday), when using RIGHT key while the cursor on the last character of the string it moves one place and copies the last string character to current position (reported by Dimitri)