summaryrefslogtreecommitdiff
path: root/src/drivers/GDI/Fl_GDI_Graphics_Driver.H
diff options
context:
space:
mode:
authorManolo Gouy <Manolo>2018-04-16 13:00:29 +0000
committerManolo Gouy <Manolo>2018-04-16 13:00:29 +0000
commit26aabc91e1b2e7417272e91df4c8a0867eb6bbba (patch)
tree5ef8988cdc991c2532279a9a386927453f6e0617 /src/drivers/GDI/Fl_GDI_Graphics_Driver.H
parent9b01ff63e7f48fd8503bbc94ca12c761397ac7c6 (diff)
Remove virtual member Fl_GraphicsDriver::mask_bitmap(char **) and its re-implementations.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.4@12843 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'src/drivers/GDI/Fl_GDI_Graphics_Driver.H')
-rw-r--r--src/drivers/GDI/Fl_GDI_Graphics_Driver.H5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/drivers/GDI/Fl_GDI_Graphics_Driver.H b/src/drivers/GDI/Fl_GDI_Graphics_Driver.H
index f4910fc47..bca0b2177 100644
--- a/src/drivers/GDI/Fl_GDI_Graphics_Driver.H
+++ b/src/drivers/GDI/Fl_GDI_Graphics_Driver.H
@@ -48,9 +48,8 @@ protected:
HDC gc_;
int numcount;
int counts[20];
- uchar **mask_bitmap_;
- uchar **mask_bitmap() {return mask_bitmap_;}
- void mask_bitmap(uchar **value) { mask_bitmap_ = value; }
+ uchar *mask_bitmap_;
+ uchar **mask_bitmap() {return &mask_bitmap_;}
int p_size;
POINT *p;
public: