Matthias Melcher wrote:
> Fl_Group::resize(x, y, w, h);

If I understood well, I did this but it works as before:

class DAD_Tile : public Fl_Tile {
        public:
        DAD_Tile(int x, int y, int w, int h, const char *L=0):
                Fl_Tile(x,y,w,h,L){};
        void resize(int x, int y, int w, int h){
                Fl_Group::resize(x, y, w, h);
                };
};

_______________________________________________
fltk mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk

Reply via email to