Skip to content

Commit

Permalink
Fix generating with Qt 6.3.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
john-preston committed Jun 14, 2022
1 parent 125b2c5 commit 762500d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion codegen/emoji/generator.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1085,7 +1085,7 @@ const ReplacementIndexStruct ReplacementIndexData[] = {\n";
startBinary();
for (auto i = byCharIndices.cbegin(), e = byCharIndices.cend(); i != e; ++i) {
suggestionsSource_->stream() << "\
{ utf16char(" << i.key().unicode() << "), medium(" << i.value().size() << ") },\n";
{ utf16char(" << QString::number(i.key().unicode()) << "), medium(" << i.value().size() << ") },\n";
}
suggestionsSource_->stream() << "};\n\
\n\
Expand Down

0 comments on commit 762500d

Please sign in to comment.