diff options
| author | Michael R Sweet <michael.r.sweet@gmail.com> | 2001-04-18 15:45:48 +0000 |
|---|---|---|
| committer | Michael R Sweet <michael.r.sweet@gmail.com> | 2001-04-18 15:45:48 +0000 |
| commit | 5389d201337b84a1a46ccb1dc278596a23fca0df (patch) | |
| tree | 7967ee7ddaa343074169afc77c19065df0e4f8fd /FL | |
| parent | 8626976d996205daa2e51400b334eb7c10536044 (diff) | |
Pass 0 instead of false for integer parameter, since not all C++ compilers
support bool type or conversion to int...
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.0@1434 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'FL')
| -rw-r--r-- | FL/Fl_Gl_Window.H | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/FL/Fl_Gl_Window.H b/FL/Fl_Gl_Window.H index 8a7a0af74..5d57a1a35 100644 --- a/FL/Fl_Gl_Window.H +++ b/FL/Fl_Gl_Window.H @@ -1,5 +1,5 @@ // -// "$Id: Fl_Gl_Window.H,v 1.7.2.4 2001/03/14 17:20:01 spitzak Exp $" +// "$Id: Fl_Gl_Window.H,v 1.7.2.5 2001/04/18 15:45:48 easysw Exp $" // // OpenGL header file for the Fast Light Tool Kit (FLTK). // @@ -71,7 +71,7 @@ public: int mode(const int *a) {return mode(0, a);} void* context() const {return context_;} - FL_EXPORT void context(void*, int destroy_flag = false); + FL_EXPORT void context(void*, int destroy_flag = 0); FL_EXPORT void make_current(); FL_EXPORT void swap_buffers(); FL_EXPORT void ortho(); @@ -90,5 +90,5 @@ public: #endif // -// End of "$Id: Fl_Gl_Window.H,v 1.7.2.4 2001/03/14 17:20:01 spitzak Exp $". +// End of "$Id: Fl_Gl_Window.H,v 1.7.2.5 2001/04/18 15:45:48 easysw Exp $". // |
