Author: matt
Date: 2012-05-16 14:35:08 -0700 (Wed, 16 May 2012)
New Revision: 9508
Log:
Fixed 'PackedGroup::resize' to public

Modified:
   branches/branch-3.0/include/fltk3/PackedGroup.h

Modified: branches/branch-3.0/include/fltk3/PackedGroup.h
===================================================================
--- branches/branch-3.0/include/fltk3/PackedGroup.h     2012-05-16 21:02:12 UTC 
(rev 9507)
+++ branches/branch-3.0/include/fltk3/PackedGroup.h     2012-05-16 21:35:08 UTC 
(rev 9508)
@@ -64,7 +64,6 @@
     
   protected:
     void draw();
-    void resize(int x, int y, int w, int h) { fltk3::Widget::resize(x, y, w, 
h); }
     
   public:
     PackedGroup(int x,int y,int w ,int h,const char *l = 0);
@@ -82,6 +81,7 @@
     uchar horizontal() const {return type();}
     /** Recalculate the size of this widget and reposition all children. */
     void layout();
+    void resize(int x, int y, int w, int h) { fltk3::Widget::resize(x, y, w, 
h); }
   };
   
 }

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

Reply via email to