If you mean that you can't do:
...then QSettings has nothing to do with that. It's the compiler that treats the backslash as an escape character. If you did:Qt Code:
settings.setValue("some\thing", 7);To copy to clipboard, switch view to plain text mode
...it should work correctly.Qt Code:
settings.setValue("some\\thing", 7);To copy to clipboard, switch view to plain text mode
Bookmarks