nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
at netboot-syslinux-multiplatform 15 lines 441 B view raw
1index 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 6 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(); 14 } 15 }