diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 1998-10-15 14:19:34 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 1998-10-15 14:19:34 +0000 |
| commit | 255e7fb39b83523c52855809bb9a80f647fe4cff (patch) | |
| tree | 6f5b4eff04b13405b94cacecafd1ed449860f661 /fluid/widget_panel.cxx | |
| parent | 45bb73a9bf4692c68294be12a2e25a39ca3a307b (diff) | |
Fluid fixes from Vincent PENNE.
git-svn-id: file:///fltk/svn/fltk/trunk@12 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'fluid/widget_panel.cxx')
| -rw-r--r-- | fluid/widget_panel.cxx | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/fluid/widget_panel.cxx b/fluid/widget_panel.cxx index 23ee01e19..46e74066a 100644 --- a/fluid/widget_panel.cxx +++ b/fluid/widget_panel.cxx @@ -5,8 +5,9 @@ Fl_Input *v_input[4]; Fl_Window* make_widget_panel() { - Fl_Window *w; - { Fl_Window* o = w = new Fl_Window(370, 480); + Fl_Window* w; + { Fl_Window* o = new Fl_Window(370, 480); + w = o; w->hotspot(o); { Fl_Input* o = new Fl_Input(90, 10, 210, 20, "name:"); o->box(FL_THIN_UP_BOX); |
