diff options
| author | Manolo Gouy <Manolo> | 2016-11-05 06:00:52 +0000 |
|---|---|---|
| committer | Manolo Gouy <Manolo> | 2016-11-05 06:00:52 +0000 |
| commit | 6eea76e187bc1628fa61ca529aac0525c6a55576 (patch) | |
| tree | f5ff552a157bd4b904b6b538bb9959627354d3f8 /FL/Fl_Graphics_Driver.H | |
| parent | 0c31411df9ef94e68c94462529d95e4fef092477 (diff) | |
Slightly improve the parameter list of member function int Fl_Graphics_Driver::start_image(...)
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3-porting@12079 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'FL/Fl_Graphics_Driver.H')
| -rw-r--r-- | FL/Fl_Graphics_Driver.H | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/FL/Fl_Graphics_Driver.H b/FL/Fl_Graphics_Driver.H index 8ec8f9006..73c050597 100644 --- a/FL/Fl_Graphics_Driver.H +++ b/FL/Fl_Graphics_Driver.H @@ -135,9 +135,9 @@ protected: virtual Fl_Bitmask create_bitmask(int w, int h, const uchar *array) {return 0; } /** Support function for image drawing */ virtual void delete_bitmask(Fl_Bitmask bm) {} - int start_image(int XP, int YP, int WP, int HP, int w, int h, int &cx, int &cy, - int &X, int &Y, int &W, int &H); // accessor functions to protected image members + int start_image(Fl_Image *img, int XP, int YP, int WP, int HP, int &cx, int &cy, + int &X, int &Y, int &W, int &H); static fl_uintptr_t* id(Fl_RGB_Image *rgb) {return &(rgb->id_);} static fl_uintptr_t* id(Fl_Pixmap *pm) {return &(pm->id_);} static fl_uintptr_t* id(Fl_Bitmap *bm) {return &(bm->id_);} |
