summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGreg Ercolano <erco@seriss.com>2016-12-20 23:27:29 +0000
committerGreg Ercolano <erco@seriss.com>2016-12-20 23:27:29 +0000
commit87f339249a83fcd791abe9bc577887cb439386de (patch)
treeff1a28fa1cfc6d860a2359a6e099a325247a9697
parent5a7f80c466834d003d9588ad3d25334ecf558501 (diff)
Fix for Brain Davis' bug report in fltk.general on 12/20/16.
Subject: Fl_Glut_Window::Fl_Glut_Window(int w, int h, const char *title = 0)... err huh well no, but it should be git-svn-id: file:///fltk/svn/fltk/branches/branch-1.4@12151 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
-rw-r--r--FL/glut.H4
1 files changed, 2 insertions, 2 deletions
diff --git a/FL/glut.H b/FL/glut.H
index 85f702f61..ba7a70e68 100644
--- a/FL/glut.H
+++ b/FL/glut.H
@@ -62,8 +62,8 @@ public: // so the inline functions work
void (*entry)(int);
void (*visibility)(int);
void (*special)(int, int x, int y);
- Fl_Glut_Window(int w, int h, const char *);
- Fl_Glut_Window(int x, int y, int w, int h, const char *);
+ Fl_Glut_Window(int w, int h, const char *t=0);
+ Fl_Glut_Window(int x, int y, int w, int h, const char *t=0);
~Fl_Glut_Window();
};