diff options
Diffstat (limited to 'FL')
| -rw-r--r-- | FL/Fl_Bitmap.H | 2 | ||||
| -rw-r--r-- | FL/Fl_Graphics_Driver.H | 12 | ||||
| -rw-r--r-- | FL/Fl_Pixmap.H | 2 |
3 files changed, 1 insertions, 15 deletions
diff --git a/FL/Fl_Bitmap.H b/FL/Fl_Bitmap.H index 79eba0a4b..47818e7f9 100644 --- a/FL/Fl_Bitmap.H +++ b/FL/Fl_Bitmap.H @@ -40,8 +40,6 @@ public: int alloc_array; private: - int prepare(int XP, int YP, int WP, int HP, int &cx, int &cy, - int &X, int &Y, int &W, int &H); /** for internal use */ fl_uintptr_t id_; int cache_w_, cache_h_; // size of bitmap when cached diff --git a/FL/Fl_Graphics_Driver.H b/FL/Fl_Graphics_Driver.H index 05398c4c3..b1ec64c07 100644 --- a/FL/Fl_Graphics_Driver.H +++ b/FL/Fl_Graphics_Driver.H @@ -248,17 +248,7 @@ protected: static Fl_Color* pixmap_bg_color(Fl_Pixmap *pm) {return &(pm->pixmap_bg_color);} /** For internal library use only */ static void draw_empty(Fl_Image* img, int X, int Y) {img->draw_empty(X, Y);} - /** Accessor to a private member function of Fl_Bitmap */ - static int prepare(Fl_Bitmap *bm, int XP, int YP, int WP, int HP, int &cx, int &cy, - int &X, int &Y, int &W, int &H) { - return bm->prepare(XP,YP,WP,HP,cx,cy,X,Y,W,H); - } - /** Accessor to a private member function of Fl_Pixmap */ - static int prepare(Fl_Pixmap *pm, int XP, int YP, int WP, int HP, int &cx, int &cy, - int &X, int &Y, int &W, int &H) { - return pm->prepare(XP,YP,WP,HP,cx,cy,X,Y,W,H); - } - + Fl_Graphics_Driver(); void cache_size(Fl_Image *img, int &width, int &height); public: diff --git a/FL/Fl_Pixmap.H b/FL/Fl_Pixmap.H index d5c0612db..b6eb178d1 100644 --- a/FL/Fl_Pixmap.H +++ b/FL/Fl_Pixmap.H @@ -40,8 +40,6 @@ class FL_EXPORT Fl_Pixmap : public Fl_Image { void copy_data(); void delete_data(); void set_data(const char * const *p); - int prepare(int XP, int YP, int WP, int HP, int &cx, int &cy, - int &X, int &Y, int &W, int &H); protected: void measure(); |
