From 18156dfb30a291ca99422bd1bbebcb390bf9d570 Mon Sep 17 00:00:00 2001 From: Manolo Gouy Date: Wed, 2 Feb 2011 12:42:47 +0000 Subject: Removed global variable fl_surface that was not very useful because equivalent to Fl_Surface_Device::surface(). git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@8360 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- FL/x.H | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'FL/x.H') diff --git a/FL/x.H b/FL/x.H index 587822baf..7113f4af9 100644 --- a/FL/x.H +++ b/FL/x.H @@ -84,13 +84,13 @@ extern FL_EXPORT ulong fl_event_time; typedef ulong Fl_Offscreen; # define fl_create_offscreen(w,h) \ XCreatePixmap(fl_display, \ - (fl_surface->class_name() == Fl_Display_Device::class_id ? \ + (Fl_Surface_Device::surface()->class_name() == Fl_Display_Device::class_id ? \ fl_window : fl_xid(Fl::first_window()) ) , \ w, h, fl_visual->depth) // begin/end are macros that save the old state in local variables: # define fl_begin_offscreen(pixmap) \ Window _sw=fl_window; fl_window=pixmap; \ - Fl_Surface_Device *_ss = fl_surface; Fl_Display_Device::display_device()->set_current(); \ + Fl_Surface_Device *_ss = Fl_Surface_Device::surface(); Fl_Display_Device::display_device()->set_current(); \ fl_push_no_clip() # define fl_end_offscreen() \ fl_pop_clip(); fl_window = _sw; _ss->set_current() -- cgit v1.2.3