summaryrefslogtreecommitdiff
path: root/src/drivers/GDI/Fl_GDI_Graphics_Driver.H
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/GDI/Fl_GDI_Graphics_Driver.H
parentcda501f91426f49e5bfc8c37afe7ff034378bc91 (diff)
Make Fl_XXX_Graphics_Driver::create_bitmask() a static member function
Diffstat (limited to 'src/drivers/GDI/Fl_GDI_Graphics_Driver.H')
-rw-r--r--src/drivers/GDI/Fl_GDI_Graphics_Driver.H2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/drivers/GDI/Fl_GDI_Graphics_Driver.H b/src/drivers/GDI/Fl_GDI_Graphics_Driver.H
index 521584fa4..39af1e68e 100644
--- a/src/drivers/GDI/Fl_GDI_Graphics_Driver.H
+++ b/src/drivers/GDI/Fl_GDI_Graphics_Driver.H
@@ -69,7 +69,7 @@ public:
virtual void *gc() {return gc_;}
// --- bitmap stuff
- HBITMAP create_bitmask(int w, int h, const uchar *array); // NOT virtual
+ static HBITMAP create_bitmask(int w, int h, const uchar *array); // NOT virtual
virtual void delete_bitmask(fl_uintptr_t bm);
HBITMAP create_alphamask(int w, int h, int d, int ld, const uchar *array);
virtual void draw_unscaled(const char* str, int n, int x, int y);