diff options
author | Slávek Banko <[email protected]> | 2020-04-07 02:21:44 +0200 |
---|---|---|
committer | Slávek Banko <[email protected]> | 2020-04-10 12:47:05 +0200 |
commit | b51e232350d31b65a8cd055693c7869f0a896193 (patch) | |
tree | a92cf4251003376d27c8621bc5116dd980faf381 /src/note.cpp | |
parent | 360e269df56279904ac6f2913e8f0c3f786aa8fb (diff) | |
download | basket-b51e232350d31b65a8cd055693c7869f0a896193.tar.gz basket-b51e232350d31b65a8cd055693c7869f0a896193.zip |
Added controlled conversions to char* instead of automatic ascii conversions.
Signed-off-by: Slávek Banko <[email protected]>
(cherry picked from commit ef3976a6cb843f51333ea43172306a9c8f4954ef)
Diffstat (limited to 'src/note.cpp')
-rw-r--r-- | src/note.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/note.cpp b/src/note.cpp index 6486de3..09eb274 100644 --- a/src/note.cpp +++ b/src/note.cpp @@ -2582,7 +2582,7 @@ void Note::debug() else if (isGroup()) std::cout << ": Group"; else - std::cout << ": Content[" << content()->lowerTypeName() << "]: " << toText(""); + std::cout << ": Content[" << content()->lowerTypeName().local8Bit() << "]: " << toText("").local8Bit(); std::cout << std::endl; } |