diff options
| author | Manolo Gouy <Manolo> | 2013-09-24 16:25:29 +0000 |
|---|---|---|
| committer | Manolo Gouy <Manolo> | 2013-09-24 16:25:29 +0000 |
| commit | 99f2010dcedda147d2a01117527f9d8aad02ab22 (patch) | |
| tree | d79d27c21f7ad701d7582e3f6bf004891a730232 | |
| parent | e1df29b85210e00299f56de7bf1416158a7d9a6d (diff) | |
Remove errors with the Apple LLVM version 4.2 compiler.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@9991 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
| -rw-r--r-- | src/Fl_cocoa.mm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/Fl_cocoa.mm b/src/Fl_cocoa.mm index 4b6466368..7ab9015e0 100644 --- a/src/Fl_cocoa.mm +++ b/src/Fl_cocoa.mm @@ -2703,13 +2703,13 @@ static void convert_crlf(char * s, size_t len) } // fltk 1.3 clipboard support constant definitions: -static const NSString *calc_utf8_format(void) +static NSString *calc_utf8_format(void) { if (fl_mac_os_version >= 100600) return @"public.utf8-plain-text"; // same as NSPasteboardTypeString return NSStringPboardType; } -static const NSString *utf8_format = calc_utf8_format(); +static NSString *utf8_format = calc_utf8_format(); // clipboard variables definitions : char *fl_selection_buffer[2]; |
