From 1b5e231c902ab198c577989db44946797ebd4893 Mon Sep 17 00:00:00 2001 From: Manolo Gouy Date: Fri, 19 Feb 2016 12:40:24 +0000 Subject: Rename Fl_Graphics_Driver::set_gc(void*) to gc(void*) and Fl_Graphics_Driver::get_gc() to gc(). git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3-porting@11191 ea41ed52-d2ee-0310-a9c1-e6b18d33e121 --- FL/Fl_Graphics_Driver.H | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'FL/Fl_Graphics_Driver.H') diff --git a/FL/Fl_Graphics_Driver.H b/FL/Fl_Graphics_Driver.H index 75a840d6d..dfe408872 100644 --- a/FL/Fl_Graphics_Driver.H +++ b/FL/Fl_Graphics_Driver.H @@ -252,9 +252,9 @@ public: virtual void copy_offscreen(int x, int y, int w, int h, Fl_Offscreen pixmap, int srcx, int srcy); /** Sets the value of the driver-specific graphics context. */ - virtual void set_gc(void*) {} + virtual void gc(void*) {} /** Returns the driver-specific graphics context, of NULL if there's none. */ - virtual void *get_gc(void) {return NULL;} + virtual void *gc(void) {return NULL;} protected: // --- implementation is in src/fl_vertex.cxx which includes src/cfg_gfx/xxx_rect.cxx virtual void transformed_vertex0(COORD_T x, COORD_T y); -- cgit v1.2.3