From 5389d201337b84a1a46ccb1dc278596a23fca0df Mon Sep 17 00:00:00 2001 From: Michael R Sweet <michael.r.sweet@gmail.com> Date: Wed, 18 Apr 2001 15:45:48 +0000 Subject: [PATCH] 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 --- FL/Fl_Gl_Window.H | 6 +++--- 1 file 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 $". // -- GitLab