Changeset 181857 in webkit
- Timestamp:
- Mar 23, 2015, 11:18:49 AM (11 years ago)
- Location:
- trunk/Source/WebCore
- Files:
-
- 2 edited
-
ChangeLog (modified) (1 diff)
-
rendering/RenderThemeIOS.mm (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/Source/WebCore/ChangeLog
r181856 r181857 1 2015-03-23 David Kilzer <ddkilzer@apple.com> 2 3 [iOS] Build fix: CoreText deprecated kCTFontSystemFontType 4 5 Fix tracked by: <rdar://problem/20261171> 6 7 * rendering/RenderThemeIOS.mm: 8 (WebCore::RenderThemeIOS::updateCachedSystemFontDescription): 9 Add clang pragmas. 10 1 11 2015-03-23 Brent Fulgham <bfulgham@apple.com> 2 12 -
trunk/Source/WebCore/rendering/RenderThemeIOS.mm
r181058 r181857 1263 1263 default: 1264 1264 textStyle = kCTFontDescriptorTextStyleEmphasized; 1265 #if COMPILER(CLANG) 1266 #pragma clang diagnostic push 1267 #pragma clang diagnostic ignored "-Wdeprecated-declarations" 1268 #endif 1269 // <rdar://problem/20261171> kCTFontSystemFontType is deprecated in CoreText 1265 1270 fontDescriptor = adoptCF(CTFontDescriptorCreateForUIType(kCTFontSystemFontType, 0, nullptr)); 1271 #if COMPILER(CLANG) 1272 #pragma clang diagnostic pop 1273 #endif 1266 1274 } 1267 1275
Note:
See TracChangeset
for help on using the changeset viewer.