diff options
| author | Neil Hodgson <nyamatongwe@gmail.com> | 2015-02-14 11:11:50 +1100 |
|---|---|---|
| committer | Neil Hodgson <nyamatongwe@gmail.com> | 2015-02-14 11:11:50 +1100 |
| commit | ad340d3cb12cd33a33d04d7fce75b3d53b52a4b6 (patch) | |
| tree | ed24a0e735aa60977b4aa23fc04ff99823b8734f /cocoa/QuartzTextLayout.h | |
| parent | f7d61952392541139af922ac027bd11dc1cb5c33 (diff) | |
| download | scintilla-mirror-ad340d3cb12cd33a33d04d7fce75b3d53b52a4b6.tar.gz | |
Fix warnings for suspicious type conversions and not fully bracketed initializers,
Diffstat (limited to 'cocoa/QuartzTextLayout.h')
| -rw-r--r-- | cocoa/QuartzTextLayout.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cocoa/QuartzTextLayout.h b/cocoa/QuartzTextLayout.h index 1e2fbce50..33869ae6e 100644 --- a/cocoa/QuartzTextLayout.h +++ b/cocoa/QuartzTextLayout.h @@ -85,7 +85,7 @@ public: if (mLine == NULL) return 0.0f; - return ::CTLineGetTypographicBounds(mLine, NULL, NULL, NULL); + return static_cast<float>(::CTLineGetTypographicBounds(mLine, NULL, NULL, NULL)); } CTLineRef getCTLine() { |
