diff --git a/documentation/fluid.html b/documentation/fluid.html index 996a35478..e2dfcbd7d 100644 --- a/documentation/fluid.html +++ b/documentation/fluid.html @@ -133,7 +133,7 @@ is a sublass of Fl_Gl_Window and will respond to calls from CubeViewUI, generated by FLUID.
class CubeView : public Fl_Gl_Window {
public:
@@ -194,7 +194,7 @@ class CubeView : public Fl_Gl_Window {
Here is the CubeView implementation. It is very similar to the
"cube" demo included with FLTK.
-#include "CubeView.hpp" +#include "CubeView.h" #include <math.h> CubeView::CubeView(int x,int y,int w,int h,const char *l) @@ -319,7 +319,7 @@ This will be no ordinary box, however. display CubeView is to enter CubeView in the "Class:" text entry box. This tells FLUID that it is not an Fl_Box, but a similar widget with the same constructor. In the "Extra -Code:" field enter #include "CubeView.hpp" +Code:" field enter #include "CubeView.h"This #include is important, as we have just included CubeView as a member of CubeViewUI, so any public CubeView methods are now available to CubeViewUI. diff --git a/documentation/glut.html b/documentation/glut.html index cbfe12a37..80fc12be3 100644 --- a/documentation/glut.html +++ b/documentation/glut.html @@ -18,7 +18,7 @@ functions that FLTK does not emulate (glutExtensionsSupported() ), you will also have to link with the GLUT library (after the FLTK library!)
Most of FL/glut.H is inline functions. You should take a -look at it (and maybe at test/glut.cxx in the FLTK source) if +look at it (and maybe at test/glpuzzle.cxx in the FLTK source) if you are having trouble porting your GLUT program.
This has been tested with most of the demo programs that come with the GLUT 3.3 distribution.
@@ -142,4 +142,4 @@ will create the window with a preset size, but the window manager will choose the position according to it's own whims.virtual Fl_Glut_Window::~Fl_Glut_Window()
- Destroys the GLUT window.