summaryrefslogtreecommitdiff
path: root/test/help.cxx
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2001-09-29 14:38:59 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2001-09-29 14:38:59 +0000
commit6a4714ce12d546c8131389853fe5593555c73b77 (patch)
tree158726de167a805d6aaa325f8250b89bf3a2db08 /test/help.cxx
parentde6c7f66eeaeeae52ca33221db885ae6cd7ea114 (diff)
Fl_FileXYZ -> Fl_File_XYZ
Fl_HelpXYZ -> Fl_Help_XYZ Fl_File_Chooser now supports directory choosing. Added fl_dir_chooser() function. Now set FLTK_DOCDIR env var in test/demo. git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@1612 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'test/help.cxx')
-rw-r--r--test/help.cxx12
1 files changed, 6 insertions, 6 deletions
diff --git a/test/help.cxx b/test/help.cxx
index 04a0be6c1..ca8054fd1 100644
--- a/test/help.cxx
+++ b/test/help.cxx
@@ -1,7 +1,7 @@
//
-// "$Id: help.cxx,v 1.1.2.1 2001/08/02 19:43:49 easysw Exp $"
+// "$Id: help.cxx,v 1.1.2.2 2001/09/29 14:38:59 easysw Exp $"
//
-// Fl_HelpDialog test program.
+// Fl_Help_Dialog test program.
//
// Copyright 1999-2001 by Easy Software Products.
//
@@ -31,7 +31,7 @@
// Include necessary headers...
//
-#include <FL/Fl_HelpDialog.H>
+#include <FL/Fl_Help_Dialog.H>
//
@@ -42,10 +42,10 @@ int // O - Exit status
main(int argc, // I - Number of command-line arguments
char *argv[]) // I - Command-line arguments
{
- Fl_HelpDialog *help; // Help dialog
+ Fl_Help_Dialog *help; // Help dialog
- help = new Fl_HelpDialog;
+ help = new Fl_Help_Dialog;
if (argc < 2)
help->load("../documentation/index.html");
@@ -63,5 +63,5 @@ main(int argc, // I - Number of command-line arguments
//
-// End of "$Id: help.cxx,v 1.1.2.1 2001/08/02 19:43:49 easysw Exp $".
+// End of "$Id: help.cxx,v 1.1.2.2 2001/09/29 14:38:59 easysw Exp $".
//