LibCore: Remove all remaining C prefix references

LibCore's GZip is also moved into the Core namespace with this change.
This commit is contained in:
Shannon Booth 2020-03-07 11:37:51 +13:00 committed by Andreas Kling
commit 57f1c919df
Notes: sideshowbarker 2024-07-19 08:51:34 +09:00
17 changed files with 42 additions and 34 deletions

View file

@ -75,7 +75,7 @@ off_t find_seek_pos(Core::File& file, int wanted_lines)
off_t end = pos;
int lines = 0;
// FIXME: Reading char-by-char is only OK if CIODevice's read buffer
// FIXME: Reading char-by-char is only OK if IODevice's read buffer
// is smart enough to not read char-by-char. Fix it there, or fix it here :)
for (; pos >= 0; pos--) {
file.seek(pos);