summaryrefslogtreecommitdiff
path: root/documentation/fluid.html
diff options
context:
space:
mode:
Diffstat (limited to 'documentation/fluid.html')
-rw-r--r--documentation/fluid.html6
1 files changed, 3 insertions, 3 deletions
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 <tt>Fl_Gl_Window</tt> and will respond to calls from
CubeViewUI, generated by FLUID.
<h4><a name="def">The CubeView Class Definition</a></h4>
Here is the CubeView class definition, as given by its header file
-"test/CubeView.hpp":
+"test/CubeView.h":
<ul><pre>
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
&quot;cube&quot; demo included with FLTK.
<ul><pre>
-#include "CubeView.hpp"
+#include "CubeView.h"
#include &lt;math.h&gt;
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 &quot;Class:&quot; text
entry box. This tells FLUID that it is not an <tt>Fl_Box</tt>, but a
similar widget with the same constructor. In the &quot;Extra
-Code:&quot; field enter <tt>#include &quot;CubeView.hpp&quot;</tt>
+Code:&quot; field enter <tt>#include &quot;CubeView.h&quot;</tt>
<p>This <tt>#include</tt> is important, as we have just included
CubeView as a member of CubeViewUI, so any public CubeView methods are
now available to CubeViewUI.