diff options
| author | Manolo Gouy <Manolo> | 2014-10-23 11:08:16 +0000 |
|---|---|---|
| committer | Manolo Gouy <Manolo> | 2014-10-23 11:08:16 +0000 |
| commit | 4db77674c3622bccea2ec13bcb940964034676f2 (patch) | |
| tree | 7369eea3af53bcfe3e6d93aed1a7d13aeee2c4a6 | |
| parent | 69d5e00ce4b6c789873125f42fe942554cd3295a (diff) | |
Removed compilation warnings in fl_rgb_color() calls.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@10390 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
| -rw-r--r-- | src/Fl_cocoa.mm | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/Fl_cocoa.mm b/src/Fl_cocoa.mm index 76cda2292..a2827289f 100644 --- a/src/Fl_cocoa.mm +++ b/src/Fl_cocoa.mm @@ -3994,15 +3994,15 @@ void Fl_Paged_Device::print_window(Fl_Window *win, int x_offset, int y_offset) delete[] bitmap; } if (fl_mac_os_version >= 101000) { // print the title bar buttons - Fl_Color inactive = fl_rgb_color(0xCECE, 0xCECE, 0xCECE); // inactive button color + Fl_Color inactive = fl_rgb_color((uchar)0xCECE, (uchar)0xCECE, (uchar)0xCECE); // inactive button color Fl_Color redish, yellowish, greenish; if ([[NSUserDefaults standardUserDefaults] integerForKey:@"AppleAquaColorVariant"] == 6) { // graphite appearance - redish = yellowish = greenish = fl_rgb_color(0x8C8C, 0x8C8C, 0x8C8C); + redish = yellowish = greenish = fl_rgb_color((uchar)0x8C8C, (uchar)0x8C8C, (uchar)0x8C8C); } else { - redish = fl_rgb_color(0xFFFF, 0x6363, 0x5A5A); - yellowish = fl_rgb_color(0xFFFF, 0xC6C6, 0x4242); - greenish = fl_rgb_color(0x2929, 0xD6D6, 0x5252); + redish = fl_rgb_color((uchar)0xFFFF, (uchar)0x6363, (uchar)0x5A5A); + yellowish = fl_rgb_color((uchar)0xFFFF, (uchar)0xC6C6, (uchar)0x4242); + greenish = fl_rgb_color((uchar)0x2929, (uchar)0xD6D6, (uchar)0x5252); } if (![close isEnabled]) fl_color(inactive); else fl_color(redish); |
