summaryrefslogtreecommitdiffstats
path: root/src/note.cpp
diff options
context:
space:
mode:
authorSlávek Banko <slavek.banko@axis.cz>2020-04-07 02:21:44 +0200
committerSlávek Banko <slavek.banko@axis.cz>2020-04-10 12:18:18 +0200
commitef3976a6cb843f51333ea43172306a9c8f4954ef (patch)
tree032bda2a007070f9b572f78472c52c9a5f6ec538 /src/note.cpp
parentd175607a268b6cc9dfeaeff1d0a38cf72201ad84 (diff)
downloadbasket-ef3976a6cb843f51333ea43172306a9c8f4954ef.tar.gz
basket-ef3976a6cb843f51333ea43172306a9c8f4954ef.zip
Added controlled conversions to char* instead of automatic ascii conversions.
Signed-off-by: Slávek Banko <slavek.banko@axis.cz>
Diffstat (limited to 'src/note.cpp')
-rw-r--r--src/note.cpp2
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;
}