summaryrefslogtreecommitdiff
path: root/fluid
diff options
context:
space:
mode:
authorCarl E. Thompson <devel-fltk@carlthompson.net>1999-03-30 23:11:26 +0000
committerCarl E. Thompson <devel-fltk@carlthompson.net>1999-03-30 23:11:26 +0000
commitcd6f7adfe084631fca7ceb6111d066c0d65c989a (patch)
treeb414350343401e8bf6b33038e2a22d623bac4059 /fluid
parent81c7d9b2156da7495668132a96e63e994be0d19d (diff)
Bugfix. FLUID now compiles under UNIX! ;->
-Carl git-svn-id: file:///fltk/svn/fltk/branches/branch-1.0@477 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'fluid')
-rw-r--r--fluid/factory.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/fluid/factory.cxx b/fluid/factory.cxx
index c717bf2ed..923fbc437 100644
--- a/fluid/factory.cxx
+++ b/fluid/factory.cxx
@@ -1,5 +1,5 @@
//
-// "$Id: factory.cxx,v 1.4 1999/01/07 19:17:13 mike Exp $"
+// "$Id: factory.cxx,v 1.4.2.1 1999/03/30 23:11:26 carl Exp $"
//
// Widget factory code for the Fast Light Tool Kit (FLTK).
//
@@ -58,13 +58,13 @@ static Fl_Box_Type Fl_Box_type;
////////////////////////////////////////////////////////////////
#include <FL/Fl_Button.H>
-static Fl_Menu_Item button_type_menu[] = {
+static Fl_Menu_Item buttontype_menu[] = {
{"Normal",0,0,(void*)0},
{"Toggle",0,0,(void*)FL_TOGGLE_BUTTON},
{"Radio",0,0,(void*)FL_RADIO_BUTTON},
{0}};
class Fl_Button_Type : public Fl_Widget_Type {
- Fl_Menu_Item *subtypes() {return button_type_menu;}
+ Fl_Menu_Item *subtypes() {return buttontype_menu;}
public:
virtual const char *type_name() {return "Fl_Button";}
Fl_Widget *widget(int x,int y,int w,int h) {
@@ -673,5 +673,5 @@ int lookup_symbol(const char *name, int &v, int numberok) {
}
//
-// End of "$Id: factory.cxx,v 1.4 1999/01/07 19:17:13 mike Exp $".
+// End of "$Id: factory.cxx,v 1.4.2.1 1999/03/30 23:11:26 carl Exp $".
//