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
This commit is contained in:
Greg Ercolano 2016-12-20 23:27:29 +00:00
parent 5a7f80c466
commit 87f339249a
1 changed files with 2 additions and 2 deletions

View File

@ -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();
};