Browse Source
0.168fca086
List support for BIP173 in bips.md (Pieter Wuille)9645aa6
Remove blockmaxsize option from init.cpp (fanquake)7847b92
Default to defining endian-conversion DECLs in compat w/o config (Matt Corallo)1720eb3
qt:Show the entire Window when double clicking on taskbar (Chun Kuan Lee)e055bc0
depends: Fix Qt build with XCode 9.3 (fanquake)0684cf9
Avoid launching as admin when NSIS installer ends. (JeremyRand)e802c22
[config] Remove blockmaxsize option (John Newbery)f118a7a
Fix illegal default `addProxy` and `addrSeparateProxyTor` settings. (251)f60e84d
Limit the number of IPs we use from each DNS seeder (e0) Pull request description: Backports: - #12626 Limit the number of IPs addrman learns from each DNS seeder - #12650 gui: Fix issue: "default port not shown correctly in settings dialog" - #12756 [config] Remove blockmaxsize option - #12985 Windows: Avoid launching as admin when NSIS installer ends. - #12946 depends: Fix Qt build with XCode 9.3 - #12998 Default to defining endian-conversion DECLs in compat w/o config - #12999 qt: Show the Window when double clicking the taskbar icon - #13064 List support for BIP173 in bips.md to the 0.16 branch. Tree-SHA512: 3e6b47c54b2cd2bdd81fbc6176cb31e46423f6e05988984d3a09b3535e3cee101ffb071cf753a4beff3c9f0521eb5de4b7c0424a3e97da801d56b4015847ac0f
Wladimir J. van der Laan
7 years ago
14 changed files with 132 additions and 28 deletions
@ -0,0 +1,34 @@
@@ -0,0 +1,34 @@
|
||||
From dbdd5f0ffbce52c8b789ed09f1aa3f1da6c02e23 Mon Sep 17 00:00:00 2001 |
||||
From: Gabriel de Dietrich <gabriel.dedietrich@qt.io> |
||||
Date: Fri, 30 Mar 2018 11:58:16 -0700 |
||||
Subject: [PATCH] QCoreTextFontEngine: Fix build with Xcode 9.3 |
||||
|
||||
Apple LLVM version 9.1.0 (clang-902.0.39.1) |
||||
|
||||
Error message: |
||||
|
||||
.../qfontengine_coretext.mm:827:20: error: qualified reference to |
||||
'QFixed' is a constructor name rather than a type in this context |
||||
return QFixed::QFixed(int(CTFontGetUnitsPerEm(ctfont))); |
||||
|
||||
Change-Id: Iebe26b3b087a16b10664208fc8851cbddb47f043 |
||||
Reviewed-by: Konstantin Ritt <ritt.ks@gmail.com> |
||||
---
|
||||
src/platformsupport/fontdatabases/mac/qfontengine_coretext.mm | 2 +- |
||||
1 file changed, 1 insertion(+), 1 deletion(-) |
||||
|
||||
diff --git old/qtbase/src/platformsupport/fontdatabases/mac/qfontengine_coretext.mm new/qtbase/src/platformsupport/fontdatabases/mac/qfontengine_coretext.mm
|
||||
index 25ff69d877d..98b753eff96 100644
|
||||
--- old/qtbase/src/platformsupport/fontdatabases/mac/qfontengine_coretext.mm
|
||||
+++ new/qtbase/src/platformsupport/fontdatabases/mac/qfontengine_coretext.mm
|
||||
@@ -824,7 +824,7 @@ void QCoreTextFontEngine::getUnscaledGlyph(glyph_t glyph, QPainterPath *path, gl
|
||||
|
||||
QFixed QCoreTextFontEngine::emSquareSize() const |
||||
{ |
||||
- return QFixed::QFixed(int(CTFontGetUnitsPerEm(ctfont)));
|
||||
+ return QFixed(int(CTFontGetUnitsPerEm(ctfont)));
|
||||
} |
||||
|
||||
QFontEngine *QCoreTextFontEngine::cloneWithSize(qreal pixelSize) const |
||||
--
|
||||
2.16.3 |
Loading…
Reference in new issue