Skip to content

Commit

Permalink
Fixed change made at r.10560 that breaks compilation with old SDKs
Browse files Browse the repository at this point in the history
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@10572 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
  • Loading branch information
Manolo Gouy authored and Manolo Gouy committed Feb 11, 2015
1 parent 9cb0516 commit eb82b2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Fl_cocoa.mm
Expand Up @@ -4393,7 +4393,7 @@ static void apply_titlebar_clipping(CGContextRef gc, int w, int h) {
win->label(title); // put back the window title
this->set_current(); // back to the Fl_Paged_Device
if (img && to_quartz) { // print the title bar
CGRect rect = NSMakeRect(x_offset, y_offset, win->w(), bt);
CGRect rect = CGRectMake(x_offset, y_offset, win->w(), bt);
Fl_X::q_begin_image(rect, 0, 0, win->w(), bt);
CGContextDrawImage(fl_gc, rect, img);
Fl_X::q_end_image();
Expand Down

0 comments on commit eb82b2f

Please sign in to comment.