aboutsummaryrefslogtreecommitdiffhomepage
path: root/cocoa/QuartzTextStyleAttribute.h
diff options
context:
space:
mode:
authornyamatongwe <devnull@localhost>2011-07-11 11:13:24 +1000
committernyamatongwe <devnull@localhost>2011-07-11 11:13:24 +1000
commitae26c58db7902ce285311ff874890ad0da05e7fb (patch)
tree4047a671cc932082dce559dce0caea1ab26de6b4 /cocoa/QuartzTextStyleAttribute.h
parente37b93af69181a824da183a312dac08e32150138 (diff)
downloadscintilla-mirror-ae26c58db7902ce285311ff874890ad0da05e7fb.tar.gz
Fix 64 bit -> 32 bit warnings in Cocoa code.
Diffstat (limited to 'cocoa/QuartzTextStyleAttribute.h')
-rw-r--r--cocoa/QuartzTextStyleAttribute.h2
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' );