summaryrefslogtreecommitdiff
path: root/src/drivers/Xlib
diff options
context:
space:
mode:
authorManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com>2022-11-25 15:53:04 +0100
committerManoloFLTK <41016272+ManoloFLTK@users.noreply.github.com>2022-11-25 15:53:28 +0100
commit4de491d02e5c45d9a43cb7f93b729aaae1bbe8b6 (patch)
tree7cc78ae9573cfbb6307031d51baa4e51841cd97a /src/drivers/Xlib
parentcda501f91426f49e5bfc8c37afe7ff034378bc91 (diff)
Make Fl_XXX_Graphics_Driver::create_bitmask() a static member function
Diffstat (limited to 'src/drivers/Xlib')
-rw-r--r--src/drivers/Xlib/Fl_Xlib_Graphics_Driver.H2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/drivers/Xlib/Fl_Xlib_Graphics_Driver.H b/src/drivers/Xlib/Fl_Xlib_Graphics_Driver.H
index cf2fcac58..899d39819 100644
--- a/src/drivers/Xlib/Fl_Xlib_Graphics_Driver.H
+++ b/src/drivers/Xlib/Fl_Xlib_Graphics_Driver.H
@@ -119,7 +119,7 @@ public:
static int fl_overlay;
// --- bitmap stuff
- unsigned long create_bitmask(int w, int h, const uchar *array); // NOT virtual
+ static unsigned long create_bitmask(int w, int h, const uchar *array); // NOT virtual
virtual void delete_bitmask(fl_uintptr_t bm);
virtual void draw_unscaled(const char* str, int n, int x, int y);
virtual void draw_unscaled(int angle, const char *str, int n, int x, int y);