diff options
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() { |