diff options
author | nyamatongwe <unknown> | 2011-07-11 11:13:24 +1000 |
---|---|---|
committer | nyamatongwe <unknown> | 2011-07-11 11:13:24 +1000 |
commit | ebe47b5ef1aeb3d971b2166b9c3eae2f6fd25447 (patch) | |
tree | 7304ce27e9ed25d1950626827063b4738f2f5243 /cocoa/QuartzTextStyleAttribute.h | |
parent | 93f4dfdaa624e54384ec5bc2ff114a69923c21c3 (diff) | |
download | scintilla-mirror-ebe47b5ef1aeb3d971b2166b9c3eae2f6fd25447.tar.gz |
Fix 64 bit -> 32 bit warnings in Cocoa code.
Diffstat (limited to 'cocoa/QuartzTextStyleAttribute.h')
-rw-r--r-- | cocoa/QuartzTextStyleAttribute.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cocoa/QuartzTextStyleAttribute.h b/cocoa/QuartzTextStyleAttribute.h index 3171ca446..ecea73b91 100644 --- a/cocoa/QuartzTextStyleAttribute.h +++ b/cocoa/QuartzTextStyleAttribute.h @@ -16,7 +16,7 @@ class QuartzFont { public: /** Create a font style from a name. */ - QuartzFont( const char* name, int length, float size, bool bold, bool italic ) + QuartzFont( const char* name, size_t length, float size, bool bold, bool italic ) { assert( name != NULL && length > 0 && name[length] == '\0' ); |