Add missing header to tabs program.

Fix dependency for help demo...


git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@2573 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Michael R Sweet 2002-08-12 02:11:03 +00:00
parent 42bfef91a7
commit 0c6c69ffbc
2 changed files with 6 additions and 5 deletions

View File

@ -1,5 +1,5 @@
#
# "$Id: Makefile,v 1.19.2.7.2.37 2002/06/28 21:04:37 easysw Exp $"
# "$Id: Makefile,v 1.19.2.7.2.38 2002/08/12 02:11:03 easysw Exp $"
#
# Test/example program makefile for the Fast Light Tool Kit (FLTK).
#
@ -243,7 +243,7 @@ forms$(EXEEXT): forms.o
hello$(EXEEXT): hello.o
help$(EXEEXT): help.o ../lib/$(LIBFLTKIMG)
help$(EXEEXT): help.o ../lib/$(IMGLIBNAME)
echo Linking $@...
$(CXX) -I.. $(CXXFLAGS) help.o -o $@ $(LINKFLTKIMG) $(LDLIBS)
$(POSTBUILD) $@ ../FL/mac.r
@ -381,5 +381,5 @@ shape$(EXEEXT): shape.o
#
# End of "$Id: Makefile,v 1.19.2.7.2.37 2002/06/28 21:04:37 easysw Exp $".
# End of "$Id: Makefile,v 1.19.2.7.2.38 2002/08/12 02:11:03 easysw Exp $".
#

View File

@ -34,8 +34,9 @@ Function {} {open
Fl_Button {} {
label button1
callback {fl_message("Test to see if this modal window prevents you from "
"changing the tabs. It should.");}
"changing the tabs. It should.");} selected
xywh {20 60 100 30}
code0 {\#include <FL/fl_ask.H>}
}
Fl_Input {} {
label {input in box2}
@ -114,7 +115,7 @@ Function {} {open
}
Fl_Return_Button {} {
label OK
callback {exit(0);} selected
callback {exit(0);}
xywh {250 290 60 30}
code0 {\#include <stdlib.h>}
}