From b2462e9adb66caf40ccb4fd95784de22b2656503 Mon Sep 17 00:00:00 2001 From: Ian MacArthur Date: Sun, 21 Dec 2014 18:03:03 +0000 Subject: Fix typo in Fl_cocoa.mm if the ABI was set to 10304 or greater. Seems ot be compiling OK again now. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@10505 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- src/Fl_cocoa.mm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src') diff --git a/src/Fl_cocoa.mm b/src/Fl_cocoa.mm index 2d6fca7a0..323a634bf 100644 --- a/src/Fl_cocoa.mm +++ b/src/Fl_cocoa.mm @@ -1174,8 +1174,8 @@ bool Fl_X::mapped_to_retina() { void Fl_X::mapped_to_retina(bool b) { #if FLTK_ABI_VERSION >= 10304 - if (b) mapped_to_retina_ |= mapped; - else mapped_to_retina_ &= ~mapped; + if (b) mapped_to_retina_ |= mapped_mask; + else mapped_to_retina_ &= ~mapped_mask; #else if (b) xidChildren = (Fl_X*)((unsigned long)xidChildren | mapped_mask); else xidChildren = (Fl_X*)((unsigned long)xidChildren & ~mapped_mask); -- cgit v1.2.3