Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / applications / misc / tellico / hex.patch
blob999c502287e99a334c0d3a29e1df2a2439853c35
1 index 7ea81c7..0c19767 100644
2 --- a/src/utils/iso5426converter.cpp
3 +++ b/src/utils/iso5426converter.cpp
4 @@ -1211,7 +1211,11 @@ QChar Iso5426Converter::getCombiningChar(uint c) {
5 return 0x1EF1; // SMALL LETTER U WITH HORN AND DOT BELOW
7 default:
8 +#if (QT_VERSION < QT_VERSION_CHECK(5, 14, 0))
9 + myDebug() << "no match for" << hex << c;
10 +#else
11 myDebug() << "no match for" << Qt::hex << c;
12 +#endif
13 return QChar();