From 4db77674c3622bccea2ec13bcb940964034676f2 Mon Sep 17 00:00:00 2001 From: Manolo Gouy Date: Thu, 23 Oct 2014 11:08:16 +0000 Subject: [PATCH] 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 --- src/Fl_cocoa.mm | 10 +++++----- 1 file 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);