diff options
| author | Greg Ercolano <erco@seriss.com> | 2016-12-20 23:27:29 +0000 |
|---|---|---|
| committer | Greg Ercolano <erco@seriss.com> | 2016-12-20 23:27:29 +0000 |
| commit | 87f339249a83fcd791abe9bc577887cb439386de (patch) | |
| tree | ff1a28fa1cfc6d860a2359a6e099a325247a9697 | |
| parent | 5a7f80c466834d003d9588ad3d25334ecf558501 (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.H | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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(); }; |
