summaryrefslogtreecommitdiff
path: root/FL/glut.H
diff options
context:
space:
mode:
authorAlbrecht Schlosser <albrechts.fltk@online.de>2015-04-03 11:04:43 +0000
committerAlbrecht Schlosser <albrechts.fltk@online.de>2015-04-03 11:04:43 +0000
commit762df8420786b6901a372bd80d2ebb0d2f84db03 (patch)
treee41cff2225d60bb9b7c5620976ea149f236a1563 /FL/glut.H
parente11571a3738c42f29d5f397e3eb23802928b0a39 (diff)
Fix copyright and remove obsolete comment.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@10665 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'FL/glut.H')
-rw-r--r--FL/glut.H3
1 files changed, 1 insertions, 2 deletions
diff --git a/FL/glut.H b/FL/glut.H
index bb83c30ba..994718859 100644
--- a/FL/glut.H
+++ b/FL/glut.H
@@ -3,7 +3,7 @@
//
// GLUT emulation header file for the Fast Light Tool Kit (FLTK).
//
-// Copyright 1998-2011 by Bill Spitzak and others.
+// Copyright 1998-2015 by Bill Spitzak and others.
//
// 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
@@ -231,7 +231,6 @@ enum {GLUT_NOT_VISIBLE, GLUT_VISIBLE};
FL_EXPORT void glutIdleFunc(void (*f)());
-// Warning: this cast may not work on all machines:
inline void glutTimerFunc(unsigned int msec, void (*f)(int), int value) {
Fl::add_timeout(msec*.001, (void (*)(void *))f, (void *)(fl_intptr_t)value);
}