summaryrefslogtreecommitdiff
path: root/FL/names.h
diff options
context:
space:
mode:
Diffstat (limited to 'FL/names.h')
-rw-r--r--FL/names.h16
1 files changed, 5 insertions, 11 deletions
diff --git a/FL/names.h b/FL/names.h
index 7b4700fbe..9aaef5490 100644
--- a/FL/names.h
+++ b/FL/names.h
@@ -1,6 +1,4 @@
//
-// "$Id$"
-//
// Event names header file for the Fast Light Tool Kit (FLTK).
//
// Copyright 1998-2016 by Bill Spitzak and others.
@@ -9,11 +7,11 @@
// 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
+// https://www.fltk.org/COPYING.php
//
-// Please report all bugs and problems on the following page:
+// Please see the following page on how to report bugs and issues:
//
-// http://www.fltk.org/str.php
+// https://www.fltk.org/bugs.php
//
// Thanks to Greg Ercolano for this addition.
@@ -32,7 +30,7 @@
\b Example:
\code
- #include <FL/names.h> // array will be defined here
+ #include <FL/names.h> // array will be defined here
int MyClass::handle(int e) {
printf("Event was %s (%d)\n", fl_eventnames[e], e);
// ..resulting output might be e.g. "Event was FL_PUSH (1)"..
@@ -82,7 +80,7 @@ const char * const fl_eventnames[] =
\b Example:
\code
- #include <FL/names.h> // array will be defined here
+ #include <FL/names.h> // array will be defined here
int MyClass::my_callback(Fl_Widget *w, void*) {
int fnum = w->labelfont();
// Resulting output might be e.g. "Label's font is FL_HELVETICA (0)"
@@ -115,7 +113,3 @@ const char * const fl_fontnames[] =
/** @} */
#endif /* FL_NAMES_H */
-
-//
-// End of "$Id$".
-//