summaryrefslogtreecommitdiff
path: root/documentation/basics.html
diff options
context:
space:
mode:
authorMichael R Sweet <michael.r.sweet@gmail.com>2002-01-15 02:17:19 +0000
committerMichael R Sweet <michael.r.sweet@gmail.com>2002-01-15 02:17:19 +0000
commita721b4ad00eb6bfa5483d62ed2461f15ca94a407 (patch)
treef37d9ddc465efcc2865502abf325a661358b0ef9 /documentation/basics.html
parent5ec539b9189405f8463e59d774fa4734a26bc708 (diff)
Doco and makefile updates from SGI.
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.1@1934 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'documentation/basics.html')
-rw-r--r--documentation/basics.html6
1 files changed, 3 insertions, 3 deletions
diff --git a/documentation/basics.html b/documentation/basics.html
index 983f1a6cb..bf6e57da4 100644
--- a/documentation/basics.html
+++ b/documentation/basics.html
@@ -60,7 +60,7 @@ box-&gt;<A href=Fl_Widget.html#Fl_Widget.labeltype>labeltype</A>(FL_SHADOW_LABEL
<UL><PRE>
window-&gt;<A href=Fl_Group.html#Fl_Group.end>end</A>();
window-&gt;<A href=Fl_Window.html#Fl_Window.show>show</A>(argc, argv);
-return <A href=functions.html#run>Fl::run</A>();
+return <A href="Fl.html#Fl.run">Fl::run</A>();
</PRE></UL>
<P>The resulting program will display the window in Figure 2-1.
@@ -103,7 +103,7 @@ Fl_Box draws, changing it from the default of
&quot;Hello, World!&quot; example we use <TT>FL_UP_BOX</TT>,
which means that a raised button border will be drawn around
the widget. You can learn more about boxtypes in
-<A href="common.html#boytypes">Chapter 3</A>.</P>
+<A href="common.html#boxtypes">Chapter 3</A>.</P>
<P>You could examine the boxtype in by doing
<tt>box->box()</tt>. FLTK uses method name overloading to make
@@ -179,7 +179,7 @@ data-driven displays.</P>
<P>FLTK applications must periodically check
(<TT>Fl::check()</TT>) or wait (<TT>Fl::wait()</TT>) for events
-or use the <A href="functions.html#run"><TT>Fl:run()</TT></A>
+or use the <A href="Fl.html#Fl.run"><TT>Fl::run()</TT></A>
method to enter a standard event processing loop. Calling
<TT>Fl::run()</TT> is equivalent to the following code:</P>