diff options
| author | ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> | 2023-02-14 11:52:21 +0100 |
|---|---|---|
| committer | ManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com> | 2023-02-14 11:52:21 +0100 |
| commit | 868ab9696fb51628afac1ea10f7df6a27907a089 (patch) | |
| tree | 921ca16bea3f59a4e64c67c268936e0dbc112ad3 /src/drivers/X11/fl_X11_platform_init.cxx | |
| parent | b055b82eb26738cd2170309ce476d9f1451204c0 (diff) | |
Rename class Fl_Display_Cairo_Graphics_Driver to Fl_X11_Cairo_Graphics_Driver
Diffstat (limited to 'src/drivers/X11/fl_X11_platform_init.cxx')
| -rw-r--r-- | src/drivers/X11/fl_X11_platform_init.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/drivers/X11/fl_X11_platform_init.cxx b/src/drivers/X11/fl_X11_platform_init.cxx index 1388beefd..477978b97 100644 --- a/src/drivers/X11/fl_X11_platform_init.cxx +++ b/src/drivers/X11/fl_X11_platform_init.cxx @@ -1,7 +1,7 @@ // // X11-specific code to initialize wayland support. // -// Copyright 2022 by Bill Spitzak and others. +// Copyright 2022-2023 by Bill Spitzak and others. // // This library is free software. Distribution and use rights are outlined in // the file "COPYING" which should have been included with this file. If this @@ -18,7 +18,7 @@ #include <FL/platform.H> #include "../Xlib/Fl_Xlib_Copy_Surface_Driver.H" #if FLTK_USE_CAIRO -# include "../Cairo/Fl_Display_Cairo_Graphics_Driver.H" +# include "../Cairo/Fl_X11_Cairo_Graphics_Driver.H" #else # include "../Xlib/Fl_Xlib_Graphics_Driver.H" #endif @@ -133,7 +133,7 @@ FL_EXPORT Fl_Fontdesc* fl_fonts = (Fl_Fontdesc*)built_in_table; Fl_Graphics_Driver *Fl_Graphics_Driver::newMainGraphicsDriver() { #if FLTK_USE_CAIRO - return new Fl_Display_Cairo_Graphics_Driver(); + return new Fl_X11_Cairo_Graphics_Driver(); #else return new Fl_Xlib_Graphics_Driver(); #endif |
