Browse Source

Avoid compilation warnings appearing with SDK 10.5

git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@10517 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
pull/49/head
Manolo Gouy 11 years ago
parent
commit
bc8a7037eb
  1. 3
      src/Fl_cocoa.mm

3
src/Fl_cocoa.mm

@ -4286,7 +4286,8 @@ void Fl_Paged_Device::print_window(Fl_Window *win, int x_offset, int y_offset) @@ -4286,7 +4286,8 @@ void Fl_Paged_Device::print_window(Fl_Window *win, int x_offset, int y_offset)
int bx, by, bt, bpp;
get_window_frame_sizes(bx, by, bt);
BOOL to_quartz = (this->driver()->class_name() == Fl_Quartz_Graphics_Driver::class_id);
#if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_5
#if MAC_OS_X_VERSION_MAX_ALLOWED >= MAC_OS_X_VERSION_10_6
// a compilation warning appears with SDK 10.5, so we require SDK 10.6 instead
if (fl_mac_os_version >= 101000) {
CALayer *layer = [[[fl_xid(win) standardWindowButton:NSWindowCloseButton] superview] layer]; // 10.5
if (layer) { // if program is linked with 10.10, title bar uses a layer

Loading…
Cancel
Save