PATCH: Add unicode/UTF-8 support to SIDE
pedward
Posts: 1,642
Attached is a patch that makes SIDE properly open and save UTF-8 encoded Unicode files. I was able to load and save the sample text from the other thread.

Comments
My openFileName change is a little different. The saveFile change was identical.
Pros or cons? Seems like we don't need to use QByteArray for this approach.
QTextStream in(&file); + in.setCodec("UTF-8"); data = in.readAll();If you look at the terminal that frees me up to do other things.
I'll push my current console.cpp change which is a little more manageable.
Let me know if you need anything.
Send your gmail account on PM and I'll add you to contributors.
Thanks!
--Steve