summaryrefslogtreecommitdiff
path: root/test/help.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'test/help.cxx')
-rw-r--r--test/help.cxx72
1 files changed, 0 insertions, 72 deletions
diff --git a/test/help.cxx b/test/help.cxx
deleted file mode 100644
index 104102f06..000000000
--- a/test/help.cxx
+++ /dev/null
@@ -1,72 +0,0 @@
-//
-// "$Id$"
-//
-// Fl_Help_Dialog test program.
-//
-// Copyright 1999-2010 by Easy Software Products.
-//
-// This library is free software. Distribution and use rights are outlined in
-// the file "COPYING" which should have been included with this file. If this
-// file is missing or damaged, see the license at:
-//
-// http://www.fltk.org/COPYING.php
-//
-// Please report all bugs and problems on the following page:
-//
-// http://www.fltk.org/str.php
-//
-// Contents:
-//
-// main() - Display the help GUI...
-//
-
-//
-// Include necessary headers...
-//
-
-#include <FL/Fl_Help_Dialog.H>
-#include <stdio.h>
-
-//
-// 'main()' - Display the help GUI...
-//
-
-int // O - Exit status
-main(int argc, // I - Number of command-line arguments
- char *argv[]) // I - Command-line arguments
-{
- Fl_Help_Dialog *help = new Fl_Help_Dialog;
-
-#ifdef __APPLE__
-
- // bundled apps do not set the current directory
- char htmlname[1000];
- strcpy(htmlname, argv[0]);
- char *slash = strrchr(htmlname, '/');
- if (slash)
- strcpy(slash, "/../Resources/help-test.html");
- FILE *in = fl_fopen(htmlname, "r");
- if (in) {
- fclose(in);
- help->load(htmlname);
- } else
-
-#endif
-
- if (argc <= 1)
- help->load("help-test.html");
- else
- help->load(argv[1]);
-
- help->show(1, argv);
-
- Fl::run();
-
- delete help;
-
- return 0;
-}
-
-//
-// End of "$Id$".
-//