mirror of https://github.com/procxx/kepka.git
Fix build for old OS X versions.
This commit is contained in:
parent
29532f8232
commit
8a7980ca7b
|
@ -209,7 +209,7 @@ using S = std::decay_t<decltype(std::declval<P>()(QString()))>;\n\
|
|||
template <typename ...Tags>\n\
|
||||
struct phrase;\n\
|
||||
\n";
|
||||
std::set<QStringList> producersDeclared;
|
||||
std::set<QString> producersDeclared;
|
||||
for (auto &entry : langpack_.entries) {
|
||||
const auto isPlural = !entry.keyBase.isEmpty();
|
||||
const auto &key = entry.key;
|
||||
|
@ -238,7 +238,7 @@ struct phrase;\n\
|
|||
}
|
||||
producerArgs.push_back("P p = P()");
|
||||
currentArgs.push_back("P p = P()");
|
||||
if (!producersDeclared.emplace(tags).second) {
|
||||
if (!producersDeclared.emplace(tags.join(',')).second) {
|
||||
continue;
|
||||
}
|
||||
header_->stream() << "\
|
||||
|
|
|
@ -136,12 +136,14 @@ NSImage *CreateNSImageFromEmoji(EmojiPtr emoji) {
|
|||
pixmap.fill(Qt::black);
|
||||
Painter paint(&pixmap);
|
||||
PainterHighQualityEnabler hq(paint);
|
||||
#ifndef OS_MAC_OLD
|
||||
Ui::Emoji::Draw(
|
||||
paint,
|
||||
std::move(emoji),
|
||||
Ui::Emoji::GetSizeTouchbar(),
|
||||
0,
|
||||
0);
|
||||
#endif // OS_MAC_OLD
|
||||
return [qt_mac_create_nsimage(pixmap) autorelease];
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue