1
edit
Changes
no edit summary
9/20 - Pair Programming - Discovered our display function was not positioning the cursor properly at the end of the string. FIXED!
==Week 4 ==
9/24 - Pair Programming - working on edit function.
Errors:
consolelineedit.cpp:75:33: error: ISO C++ forbids comparison between pointer and integer [-fpermissive]
consolelineedit.cpp:76:25: error: invalid conversion from âsize_t {aka unsigned int}â to âint*â [-fpermissive]
- had to dereference "strOffset" (FIXED!)
consolelineedit.cpp: In function âint edit(char*, int, int, int, int, bool*, int*, int*)â:
consolelineedit.cpp:80:22: warning: NULL used in arithmetic [-Wpointer-arith]
- field dereference that shouldn't be dereferenced
- cannot compare int with NULL, but can with pointer (FIXED!)
consolelineedit.cpp:131:3: error: expected primary-expression before â}â token
consolelineedit.cpp:131:3: error: expected â;â before â}â token
- forgot braces (FIXED!)
==Week 5 ==