summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>1999-01-13 15:37:59 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>1999-01-13 15:37:59 +0000
commita64292cc5f56e165b471f5bb23acea765d838c7e (patch)
tree19a7a41e8599365e1a83c3d1554c78979abb451a
parent07766e7d727a075372d33c43f9f2f0602ea4a0b8 (diff)
Fix from Bill - handle() method needs to be public.
git-svn-id: file:///fltk/svn/fltk/trunk@208 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
-rw-r--r--FL/Fl_Tile.H6
1 files changed, 3 insertions, 3 deletions
diff --git a/FL/Fl_Tile.H b/FL/Fl_Tile.H
index 430ff3c8c..d32c4f343 100644
--- a/FL/Fl_Tile.H
+++ b/FL/Fl_Tile.H
@@ -1,5 +1,5 @@
//
-// "$Id: Fl_Tile.H,v 1.4 1999/01/07 19:17:03 mike Exp $"
+// "$Id: Fl_Tile.H,v 1.5 1999/01/13 15:37:59 mike Exp $"
//
// Tile header file for the Fast Light Tool Kit (FLTK).
//
@@ -29,8 +29,8 @@
#include "Fl_Group.H"
class Fl_Tile : public Fl_Group {
- int handle(int);
public:
+ int handle(int);
Fl_Tile(int X,int Y,int W,int H,const char*l=0) : Fl_Group(X,Y,W,H,l) {}
void resize(int, int, int, int);
void position(int, int, int, int);
@@ -39,5 +39,5 @@ public:
#endif
//
-// End of "$Id: Fl_Tile.H,v 1.4 1999/01/07 19:17:03 mike Exp $".
+// End of "$Id: Fl_Tile.H,v 1.5 1999/01/13 15:37:59 mike Exp $".
//