mirror of
https://github.com/juce-framework/JUCE.git
synced 2026-01-10 23:44:24 +00:00
Minor warning fix.
This commit is contained in:
parent
858686d88c
commit
e68a654646
1 changed files with 4 additions and 2 deletions
|
|
@ -486,8 +486,9 @@ public:
|
|||
font.getTypefaceStyle()),
|
||||
fontRef (nullptr),
|
||||
ctFontRef (nullptr),
|
||||
fontHeightToPointsFactor (1.0f), isMemoryFont (false),
|
||||
fontHeightToPointsFactor (1.0f),
|
||||
renderingTransform (CGAffineTransformIdentity),
|
||||
isMemoryFont (false),
|
||||
attributedStringAtts (nullptr),
|
||||
ascent (0.0f),
|
||||
unitsToHeightScaleFactor (0.0f)
|
||||
|
|
@ -505,8 +506,9 @@ public:
|
|||
: Typeface (String(), String()),
|
||||
fontRef (nullptr),
|
||||
ctFontRef (nullptr),
|
||||
fontHeightToPointsFactor (1.0f), isMemoryFont (true),
|
||||
fontHeightToPointsFactor (1.0f),
|
||||
renderingTransform (CGAffineTransformIdentity),
|
||||
isMemoryFont (true),
|
||||
attributedStringAtts (nullptr),
|
||||
ascent (0.0f),
|
||||
unitsToHeightScaleFactor (0.0f)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue