summaryrefslogtreecommitdiff
path: root/FL
diff options
context:
space:
mode:
Diffstat (limited to 'FL')
-rw-r--r--FL/Fl_Float_Input.H8
-rw-r--r--FL/Fl_Gl_Window.H10
-rw-r--r--FL/Fl_Hor_Slider.H8
-rw-r--r--FL/Fl_Hor_Value_Slider.H8
-rw-r--r--FL/Fl_Int_Input.H8
-rw-r--r--FL/Fl_Multiline_Input.H8
-rw-r--r--FL/Fl_Multiline_Output.H8
-rw-r--r--FL/Fl_Output.H8
-rw-r--r--FL/Fl_Radio_Light_Button.H8
-rw-r--r--FL/Fl_Repeat_Button.H8
-rw-r--r--FL/Fl_Secret_Input.H8
-rw-r--r--FL/Fl_Select_Browser.H8
-rw-r--r--FL/Fl_Text_Buffer.H6
-rw-r--r--FL/Fl_Text_Display.H6
-rw-r--r--FL/Fl_Toggle_Button.H8
-rw-r--r--FL/Fl_Value_Output.H6
-rw-r--r--FL/forms.H8
17 files changed, 66 insertions, 66 deletions
diff --git a/FL/Fl_Float_Input.H b/FL/Fl_Float_Input.H
index 702b48893..ca4245388 100644
--- a/FL/Fl_Float_Input.H
+++ b/FL/Fl_Float_Input.H
@@ -1,5 +1,5 @@
//
-// "$Id: Fl_Float_Input.H,v 1.4.2.3.2.1 2002/01/01 15:11:27 easysw Exp $"
+// "$Id: Fl_Float_Input.H,v 1.4.2.3.2.2 2002/08/09 03:17:29 easysw Exp $"
//
// Floating point input header file for the Fast Light Tool Kit (FLTK).
//
@@ -30,12 +30,12 @@
class Fl_Float_Input : public Fl_Input {
public:
- Fl_Float_Input(int x,int y,int w,int h,const char *l = 0)
- : Fl_Input(x,y,w,h,l) {type(FL_FLOAT_INPUT);}
+ Fl_Float_Input(int X,int Y,int W,int H,const char *l = 0)
+ : Fl_Input(X,Y,W,H,l) {type(FL_FLOAT_INPUT);}
};
#endif
//
-// End of "$Id: Fl_Float_Input.H,v 1.4.2.3.2.1 2002/01/01 15:11:27 easysw Exp $".
+// End of "$Id: Fl_Float_Input.H,v 1.4.2.3.2.2 2002/08/09 03:17:29 easysw Exp $".
//
diff --git a/FL/Fl_Gl_Window.H b/FL/Fl_Gl_Window.H
index 0eb602ca9..b34141098 100644
--- a/FL/Fl_Gl_Window.H
+++ b/FL/Fl_Gl_Window.H
@@ -1,5 +1,5 @@
//
-// "$Id: Fl_Gl_Window.H,v 1.7.2.5.2.1 2002/01/01 15:11:27 easysw Exp $"
+// "$Id: Fl_Gl_Window.H,v 1.7.2.5.2.2 2002/08/09 03:17:29 easysw Exp $"
//
// OpenGL header file for the Fast Light Tool Kit (FLTK).
//
@@ -60,11 +60,11 @@ public:
FL_EXPORT void resize(int,int,int,int);
char valid() const {return valid_;}
- void valid(char i) {valid_ = i;}
+ void valid(char v) {valid_ = v;}
FL_EXPORT void invalidate();
- static int can_do(int i) {return can_do(i,0);}
- static int can_do(const int *i) {return can_do(0, i);}
+ static int can_do(int m) {return can_do(m,0);}
+ static int can_do(const int *m) {return can_do(0, m);}
int can_do() {return can_do(mode_,alist);}
Fl_Mode mode() const {return (Fl_Mode)mode_;}
int mode(int a) {return mode(a,0);}
@@ -90,5 +90,5 @@ public:
#endif
//
-// End of "$Id: Fl_Gl_Window.H,v 1.7.2.5.2.1 2002/01/01 15:11:27 easysw Exp $".
+// End of "$Id: Fl_Gl_Window.H,v 1.7.2.5.2.2 2002/08/09 03:17:29 easysw Exp $".
//
diff --git a/FL/Fl_Hor_Slider.H b/FL/Fl_Hor_Slider.H
index 696c16942..c0b806df4 100644
--- a/FL/Fl_Hor_Slider.H
+++ b/FL/Fl_Hor_Slider.H
@@ -1,5 +1,5 @@
//
-// "$Id: Fl_Hor_Slider.H,v 1.4.2.3.2.1 2002/01/01 15:11:27 easysw Exp $"
+// "$Id: Fl_Hor_Slider.H,v 1.4.2.3.2.2 2002/08/09 03:17:29 easysw Exp $"
//
// Horizontal slider header file for the Fast Light Tool Kit (FLTK).
//
@@ -30,12 +30,12 @@
class Fl_Hor_Slider : public Fl_Slider {
public:
- Fl_Hor_Slider(int x,int y,int w,int h,const char *l=0)
- : Fl_Slider(x,y,w,h,l) {type(FL_HOR_SLIDER);}
+ Fl_Hor_Slider(int X,int Y,int W,int H,const char *l=0)
+ : Fl_Slider(X,Y,W,H,l) {type(FL_HOR_SLIDER);}
};
#endif
//
-// End of "$Id: Fl_Hor_Slider.H,v 1.4.2.3.2.1 2002/01/01 15:11:27 easysw Exp $".
+// End of "$Id: Fl_Hor_Slider.H,v 1.4.2.3.2.2 2002/08/09 03:17:29 easysw Exp $".
//
diff --git a/FL/Fl_Hor_Value_Slider.H b/FL/Fl_Hor_Value_Slider.H
index 05beac892..8c36cb451 100644
--- a/FL/Fl_Hor_Value_Slider.H
+++ b/FL/Fl_Hor_Value_Slider.H
@@ -1,5 +1,5 @@
//
-// "$Id: Fl_Hor_Value_Slider.H,v 1.4.2.3.2.1 2002/01/01 15:11:27 easysw Exp $"
+// "$Id: Fl_Hor_Value_Slider.H,v 1.4.2.3.2.2 2002/08/09 03:17:29 easysw Exp $"
//
// Horizontal value slider header file for the Fast Light Tool Kit (FLTK).
//
@@ -30,12 +30,12 @@
class Fl_Hor_Value_Slider : public Fl_Value_Slider {
public:
- Fl_Hor_Value_Slider(int x,int y,int w,int h,const char *l=0)
- : Fl_Value_Slider(x,y,w,h,l) {type(FL_HOR_SLIDER);}
+ Fl_Hor_Value_Slider(int X,int Y,int W,int H,const char *l=0)
+ : Fl_Value_Slider(X,Y,W,H,l) {type(FL_HOR_SLIDER);}
};
#endif
//
-// End of "$Id: Fl_Hor_Value_Slider.H,v 1.4.2.3.2.1 2002/01/01 15:11:27 easysw Exp $".
+// End of "$Id: Fl_Hor_Value_Slider.H,v 1.4.2.3.2.2 2002/08/09 03:17:29 easysw Exp $".
//
diff --git a/FL/Fl_Int_Input.H b/FL/Fl_Int_Input.H
index 72296d82f..82b09f527 100644
--- a/FL/Fl_Int_Input.H
+++ b/FL/Fl_Int_Input.H
@@ -1,5 +1,5 @@
//
-// "$Id: Fl_Int_Input.H,v 1.4.2.3.2.1 2002/01/01 15:11:27 easysw Exp $"
+// "$Id: Fl_Int_Input.H,v 1.4.2.3.2.2 2002/08/09 03:17:29 easysw Exp $"
//
// Integer input header file for the Fast Light Tool Kit (FLTK).
//
@@ -30,12 +30,12 @@
class Fl_Int_Input : public Fl_Input {
public:
- Fl_Int_Input(int x,int y,int w,int h,const char *l = 0)
- : Fl_Input(x,y,w,h,l) {type(FL_INT_INPUT);}
+ Fl_Int_Input(int X,int Y,int W,int H,const char *l = 0)
+ : Fl_Input(X,Y,W,H,l) {type(FL_INT_INPUT);}
};
#endif
//
-// End of "$Id: Fl_Int_Input.H,v 1.4.2.3.2.1 2002/01/01 15:11:27 easysw Exp $".
+// End of "$Id: Fl_Int_Input.H,v 1.4.2.3.2.2 2002/08/09 03:17:29 easysw Exp $".
//
diff --git a/FL/Fl_Multiline_Input.H b/FL/Fl_Multiline_Input.H
index 68428380b..0d2bf615c 100644
--- a/FL/Fl_Multiline_Input.H
+++ b/FL/Fl_Multiline_Input.H
@@ -1,5 +1,5 @@
//
-// "$Id: Fl_Multiline_Input.H,v 1.4.2.3.2.1 2002/01/01 15:11:28 easysw Exp $"
+// "$Id: Fl_Multiline_Input.H,v 1.4.2.3.2.2 2002/08/09 03:17:29 easysw Exp $"
//
// Multiline input header file for the Fast Light Tool Kit (FLTK).
//
@@ -30,12 +30,12 @@
class Fl_Multiline_Input : public Fl_Input {
public:
- Fl_Multiline_Input(int x,int y,int w,int h,const char *l = 0)
- : Fl_Input(x,y,w,h,l) {type(FL_MULTILINE_INPUT);}
+ Fl_Multiline_Input(int X,int Y,int W,int H,const char *l = 0)
+ : Fl_Input(X,Y,W,H,l) {type(FL_MULTILINE_INPUT);}
};
#endif
//
-// End of "$Id: Fl_Multiline_Input.H,v 1.4.2.3.2.1 2002/01/01 15:11:28 easysw Exp $".
+// End of "$Id: Fl_Multiline_Input.H,v 1.4.2.3.2.2 2002/08/09 03:17:29 easysw Exp $".
//
diff --git a/FL/Fl_Multiline_Output.H b/FL/Fl_Multiline_Output.H
index ea1d51ce4..88d64555f 100644
--- a/FL/Fl_Multiline_Output.H
+++ b/FL/Fl_Multiline_Output.H
@@ -1,5 +1,5 @@
//
-// "$Id: Fl_Multiline_Output.H,v 1.4.2.3.2.2 2002/04/11 11:52:41 easysw Exp $"
+// "$Id: Fl_Multiline_Output.H,v 1.4.2.3.2.3 2002/08/09 03:17:29 easysw Exp $"
//
// Multi line output header file for the Fast Light Tool Kit (FLTK).
//
@@ -30,12 +30,12 @@
class Fl_Multiline_Output : public Fl_Output {
public:
- Fl_Multiline_Output(int x,int y,int w,int h,const char *l = 0)
- : Fl_Output(x,y,w,h,l) {type(FL_MULTILINE_OUTPUT);}
+ Fl_Multiline_Output(int X,int Y,int W,int H,const char *l = 0)
+ : Fl_Output(X,Y,W,H,l) {type(FL_MULTILINE_OUTPUT);}
};
#endif
//
-// End of "$Id: Fl_Multiline_Output.H,v 1.4.2.3.2.2 2002/04/11 11:52:41 easysw Exp $".
+// End of "$Id: Fl_Multiline_Output.H,v 1.4.2.3.2.3 2002/08/09 03:17:29 easysw Exp $".
//
diff --git a/FL/Fl_Output.H b/FL/Fl_Output.H
index 25eafba90..d7429b47f 100644
--- a/FL/Fl_Output.H
+++ b/FL/Fl_Output.H
@@ -1,5 +1,5 @@
//
-// "$Id: Fl_Output.H,v 1.5.2.3.2.2 2002/04/11 11:52:41 easysw Exp $"
+// "$Id: Fl_Output.H,v 1.5.2.3.2.3 2002/08/09 03:17:29 easysw Exp $"
//
// Output header file for the Fast Light Tool Kit (FLTK).
//
@@ -30,12 +30,12 @@
class Fl_Output : public Fl_Input {
public:
- Fl_Output(int x, int y, int w, int h, const char *l = 0)
- : Fl_Input(x, y, w, h, l) {type(FL_NORMAL_OUTPUT);}
+ Fl_Output(int X,int Y,int W,int H, const char *l = 0)
+ : Fl_Input(X, Y, W, H, l) {type(FL_NORMAL_OUTPUT);}
};
#endif
//
-// End of "$Id: Fl_Output.H,v 1.5.2.3.2.2 2002/04/11 11:52:41 easysw Exp $".
+// End of "$Id: Fl_Output.H,v 1.5.2.3.2.3 2002/08/09 03:17:29 easysw Exp $".
//
diff --git a/FL/Fl_Radio_Light_Button.H b/FL/Fl_Radio_Light_Button.H
index a8d62b000..4ed63fa3b 100644
--- a/FL/Fl_Radio_Light_Button.H
+++ b/FL/Fl_Radio_Light_Button.H
@@ -1,5 +1,5 @@
//
-// "$Id: Fl_Radio_Light_Button.H,v 1.4.2.3.2.1 2002/01/01 15:11:28 easysw Exp $"
+// "$Id: Fl_Radio_Light_Button.H,v 1.4.2.3.2.2 2002/08/09 03:17:29 easysw Exp $"
//
// Radio light button header file for the Fast Light Tool Kit (FLTK).
//
@@ -29,12 +29,12 @@
class Fl_Radio_Light_Button : public Fl_Light_Button {
public:
- Fl_Radio_Light_Button(int x,int y,int w,int h,const char *l=0)
- : Fl_Light_Button(x,y,w,h,l) {type(FL_RADIO_BUTTON);}
+ Fl_Radio_Light_Button(int X,int Y,int W,int H,const char *l=0)
+ : Fl_Light_Button(X,Y,W,H,l) {type(FL_RADIO_BUTTON);}
};
#endif
//
-// End of "$Id: Fl_Radio_Light_Button.H,v 1.4.2.3.2.1 2002/01/01 15:11:28 easysw Exp $".
+// End of "$Id: Fl_Radio_Light_Button.H,v 1.4.2.3.2.2 2002/08/09 03:17:29 easysw Exp $".
//
diff --git a/FL/Fl_Repeat_Button.H b/FL/Fl_Repeat_Button.H
index 8a566f4f5..4bf73b85c 100644
--- a/FL/Fl_Repeat_Button.H
+++ b/FL/Fl_Repeat_Button.H
@@ -1,5 +1,5 @@
//
-// "$Id: Fl_Repeat_Button.H,v 1.5.2.5.2.1 2002/01/01 15:11:28 easysw Exp $"
+// "$Id: Fl_Repeat_Button.H,v 1.5.2.5.2.2 2002/08/09 03:17:29 easysw Exp $"
//
// Repeat button header file for the Fast Light Tool Kit (FLTK).
//
@@ -32,8 +32,8 @@ class Fl_Repeat_Button : public Fl_Button {
static FL_EXPORT void repeat_callback(void *);
public:
FL_EXPORT int handle(int);
- Fl_Repeat_Button(int x,int y,int w,int h,const char *l=0)
- : Fl_Button(x,y,w,h,l) {}
+ Fl_Repeat_Button(int X,int Y,int W,int H,const char *l=0)
+ : Fl_Button(X,Y,W,H,l) {}
void deactivate() {
Fl::remove_timeout(repeat_callback,this);
Fl_Button::deactivate();
@@ -43,5 +43,5 @@ public:
#endif
//
-// End of "$Id: Fl_Repeat_Button.H,v 1.5.2.5.2.1 2002/01/01 15:11:28 easysw Exp $".
+// End of "$Id: Fl_Repeat_Button.H,v 1.5.2.5.2.2 2002/08/09 03:17:29 easysw Exp $".
//
diff --git a/FL/Fl_Secret_Input.H b/FL/Fl_Secret_Input.H
index 5eb884a8e..26ba70305 100644
--- a/FL/Fl_Secret_Input.H
+++ b/FL/Fl_Secret_Input.H
@@ -1,5 +1,5 @@
//
-// "$Id: Fl_Secret_Input.H,v 1.4.2.3.2.1 2002/01/01 15:11:28 easysw Exp $"
+// "$Id: Fl_Secret_Input.H,v 1.4.2.3.2.2 2002/08/09 03:17:29 easysw Exp $"
//
// Secret input header file for the Fast Light Tool Kit (FLTK).
//
@@ -30,12 +30,12 @@
class Fl_Secret_Input : public Fl_Input {
public:
- Fl_Secret_Input(int x,int y,int w,int h,const char *l = 0)
- : Fl_Input(x,y,w,h,l) {type(FL_SECRET_INPUT);}
+ Fl_Secret_Input(int X,int Y,int W,int H,const char *l = 0)
+ : Fl_Input(X,Y,W,H,l) {type(FL_SECRET_INPUT);}
};
#endif
//
-// End of "$Id: Fl_Secret_Input.H,v 1.4.2.3.2.1 2002/01/01 15:11:28 easysw Exp $".
+// End of "$Id: Fl_Secret_Input.H,v 1.4.2.3.2.2 2002/08/09 03:17:29 easysw Exp $".
//
diff --git a/FL/Fl_Select_Browser.H b/FL/Fl_Select_Browser.H
index 3a95fb4b3..c020bc5ec 100644
--- a/FL/Fl_Select_Browser.H
+++ b/FL/Fl_Select_Browser.H
@@ -1,5 +1,5 @@
//
-// "$Id: Fl_Select_Browser.H,v 1.4.2.3.2.1 2002/01/01 15:11:28 easysw Exp $"
+// "$Id: Fl_Select_Browser.H,v 1.4.2.3.2.2 2002/08/09 03:17:29 easysw Exp $"
//
// Select browser header file for the Fast Light Tool Kit (FLTK).
//
@@ -30,12 +30,12 @@
class Fl_Select_Browser : public Fl_Browser {
public:
- Fl_Select_Browser(int x,int y,int w,int h,const char *l=0)
- : Fl_Browser(x,y,w,h,l) {type(FL_SELECT_BROWSER);}
+ Fl_Select_Browser(int X,int Y,int W,int H,const char *l=0)
+ : Fl_Browser(X,Y,W,H,l) {type(FL_SELECT_BROWSER);}
};
#endif
//
-// End of "$Id: Fl_Select_Browser.H,v 1.4.2.3.2.1 2002/01/01 15:11:28 easysw Exp $".
+// End of "$Id: Fl_Select_Browser.H,v 1.4.2.3.2.2 2002/08/09 03:17:29 easysw Exp $".
//
diff --git a/FL/Fl_Text_Buffer.H b/FL/Fl_Text_Buffer.H
index 0c342c062..e2dc584f0 100644
--- a/FL/Fl_Text_Buffer.H
+++ b/FL/Fl_Text_Buffer.H
@@ -1,5 +1,5 @@
//
-// "$Id: Fl_Text_Buffer.H,v 1.3.2.3 2002/06/09 13:35:49 easysw Exp $"
+// "$Id: Fl_Text_Buffer.H,v 1.3.2.4 2002/08/09 03:17:29 easysw Exp $"
//
// Header file for Fl_Text_Buffer class.
//
@@ -78,7 +78,7 @@ class FL_EXPORT Fl_Text_Buffer {
char character(int pos);
char* text_in_rectangle(int start, int end, int rectStart, int rectEnd);
void insert(int pos, const char* text);
- void append(const char* text) { insert(length(), text); }
+ void append(const char* t) { insert(length(), t); }
void remove(int start, int end);
void replace(int start, int end, const char *text);
void copy(Fl_Text_Buffer* fromBuf, int fromStart, int fromEnd, int toPos);
@@ -238,5 +238,5 @@ class FL_EXPORT Fl_Text_Buffer {
#endif
//
-// End of "$Id: Fl_Text_Buffer.H,v 1.3.2.3 2002/06/09 13:35:49 easysw Exp $".
+// End of "$Id: Fl_Text_Buffer.H,v 1.3.2.4 2002/08/09 03:17:29 easysw Exp $".
//
diff --git a/FL/Fl_Text_Display.H b/FL/Fl_Text_Display.H
index 60c90115e..1b64c43bc 100644
--- a/FL/Fl_Text_Display.H
+++ b/FL/Fl_Text_Display.H
@@ -1,5 +1,5 @@
//
-// "$Id: Fl_Text_Display.H,v 1.4.2.9 2002/08/05 18:03:58 easysw Exp $"
+// "$Id: Fl_Text_Display.H,v 1.4.2.10 2002/08/09 03:17:29 easysw Exp $"
//
// Header file for Fl_Text_Display class.
//
@@ -95,7 +95,7 @@ class Fl_Text_Display: public Fl_Group {
FL_EXPORT void cursor_style(int style);
int scrollbar_width() { return scrollbar_width_; }
Fl_Align scrollbar_align() { return scrollbar_align_; }
- void scrollbar_width(int w) { scrollbar_width_ = w; }
+ void scrollbar_width(int W) { scrollbar_width_ = W; }
void scrollbar_align(Fl_Align a) { scrollbar_align_ = a; }
int word_start(int pos) { return buffer()->word_start(pos); }
int word_end(int pos) { return buffer()->word_end(pos); }
@@ -243,5 +243,5 @@ class Fl_Text_Display: public Fl_Group {
#endif
//
-// End of "$Id: Fl_Text_Display.H,v 1.4.2.9 2002/08/05 18:03:58 easysw Exp $".
+// End of "$Id: Fl_Text_Display.H,v 1.4.2.10 2002/08/09 03:17:29 easysw Exp $".
//
diff --git a/FL/Fl_Toggle_Button.H b/FL/Fl_Toggle_Button.H
index fb1d33002..6de1d3074 100644
--- a/FL/Fl_Toggle_Button.H
+++ b/FL/Fl_Toggle_Button.H
@@ -1,5 +1,5 @@
//
-// "$Id: Fl_Toggle_Button.H,v 1.4.2.3.2.1 2002/01/01 15:11:28 easysw Exp $"
+// "$Id: Fl_Toggle_Button.H,v 1.4.2.3.2.2 2002/08/09 03:17:29 easysw Exp $"
//
// Toggle button header file for the Fast Light Tool Kit (FLTK).
//
@@ -30,12 +30,12 @@
class Fl_Toggle_Button : public Fl_Button {
public:
- Fl_Toggle_Button(int x,int y,int w,int h,const char *l=0)
- : Fl_Button(x,y,w,h,l) {type(FL_TOGGLE_BUTTON);}
+ Fl_Toggle_Button(int X,int Y,int W,int H,const char *l=0)
+ : Fl_Button(X,Y,W,H,l) {type(FL_TOGGLE_BUTTON);}
};
#endif
//
-// End of "$Id: Fl_Toggle_Button.H,v 1.4.2.3.2.1 2002/01/01 15:11:28 easysw Exp $".
+// End of "$Id: Fl_Toggle_Button.H,v 1.4.2.3.2.2 2002/08/09 03:17:29 easysw Exp $".
//
diff --git a/FL/Fl_Value_Output.H b/FL/Fl_Value_Output.H
index b27b55f56..a8ed97958 100644
--- a/FL/Fl_Value_Output.H
+++ b/FL/Fl_Value_Output.H
@@ -1,5 +1,5 @@
//
-// "$Id: Fl_Value_Output.H,v 1.5.2.3.2.2 2002/01/01 15:11:28 easysw Exp $"
+// "$Id: Fl_Value_Output.H,v 1.5.2.3.2.3 2002/08/09 03:17:29 easysw Exp $"
//
// Value output header file for the Fast Light Tool Kit (FLTK).
//
@@ -38,7 +38,7 @@ public:
FL_EXPORT void draw();
FL_EXPORT Fl_Value_Output(int x,int y,int w,int h,const char *l=0);
- void soft(uchar x) {soft_ = x;}
+ void soft(uchar s) {soft_ = s;}
uchar soft() const {return soft_;}
Fl_Font textfont() const {return (Fl_Font)textfont_;}
@@ -52,5 +52,5 @@ public:
#endif
//
-// End of "$Id: Fl_Value_Output.H,v 1.5.2.3.2.2 2002/01/01 15:11:28 easysw Exp $".
+// End of "$Id: Fl_Value_Output.H,v 1.5.2.3.2.3 2002/08/09 03:17:29 easysw Exp $".
//
diff --git a/FL/forms.H b/FL/forms.H
index e243090ea..0a3171cec 100644
--- a/FL/forms.H
+++ b/FL/forms.H
@@ -1,5 +1,5 @@
//
-// "$Id: forms.H,v 1.7.2.7.2.4 2002/03/25 21:08:41 easysw Exp $"
+// "$Id: forms.H,v 1.7.2.7.2.5 2002/08/09 03:17:29 easysw Exp $"
//
// Forms emulation header file for the Fast Light Tool Kit (FLTK).
//
@@ -812,8 +812,8 @@ class Fl_FormsText : public Fl_Widget {
protected:
FL_EXPORT void draw();
public:
- Fl_FormsText(Fl_Boxtype b, int x, int y, int w, int h, const char* l=0)
- : Fl_Widget(x,y,w,h,l) {box(b); align(FL_ALIGN_LEFT);}
+ Fl_FormsText(Fl_Boxtype b, int X, int Y, int W, int H, const char* l=0)
+ : Fl_Widget(X,Y,W,H,l) {box(b); align(FL_ALIGN_LEFT);}
};
#define FL_NORMAL_TEXT FL_NO_BOX
forms_constructorb(Fl_FormsText, fl_add_text)
@@ -838,5 +838,5 @@ inline void fl_draw() {Fl::flush();}
#endif /* define __FORMS_H__ */
//
-// End of "$Id: forms.H,v 1.7.2.7.2.4 2002/03/25 21:08:41 easysw Exp $".
+// End of "$Id: forms.H,v 1.7.2.7.2.5 2002/08/09 03:17:29 easysw Exp $".
//