summaryrefslogtreecommitdiff
path: root/documentation
diff options
context:
space:
mode:
Diffstat (limited to 'documentation')
-rw-r--r--documentation/editor.html34
-rw-r--r--documentation/index.html4
-rw-r--r--documentation/preface.html4
3 files changed, 21 insertions, 21 deletions
diff --git a/documentation/editor.html b/documentation/editor.html
index b76dd81af..e2aa51dde 100644
--- a/documentation/editor.html
+++ b/documentation/editor.html
@@ -56,27 +56,27 @@ items in a menubar:
<UL>
<PRE>
Fl_Menu_Item menuitems[] = {
- { &quot;&amp;File&quot;, 0, 0, 0, FL_SUBMENU },
- { &quot;&amp;New&quot;, FL_ALT + 'n', new_cb },
- { &quot;&amp;Open...&quot;, FL_ALT + 'o', open_cb, 0, FL_MENU_DIVIDER },
- { &quot;&amp;Save&quot;, FL_ALT + 's', save_cb },
- { &quot;Save &amp;As...&quot;, FL_ALT + FL_SHIFT + 's', saveas_cb, 0, FL_MENU_DIVIDER },
- { &quot;&amp;Quit&quot;, FL_ALT + 'q', quit_cb },
+ { "&amp;File", 0, 0, 0, FL_SUBMENU },
+ { "&amp;New", FL_ALT + 'n', (Fl_Callback *)new_cb },
+ { "&amp;Open...", FL_ALT + 'o', (Fl_Callback *)open_cb, 0, FL_MENU_DIVIDER },
+ { "&amp;Save", FL_ALT + 's', (Fl_Callback *)save_cb },
+ { "Save &amp;As...", FL_ALT + FL_SHIFT + 's', (Fl_Callback *)saveas_cb, 0, FL_MENU_DIVIDER },
+ { "&amp;Quit", FL_ALT + 'q', (Fl_Callback *)quit_cb },
{ 0 },
- { &quot;&amp;Edit&quot;, 0, 0, 0, FL_SUBMENU },
- { &quot;&amp;Undo&quot;, FL_ALT + 'z', undo_cb, 0, FL_MENU_DIVIDER },
- { &quot;Cu&amp;t&quot;, FL_ALT + 'x', cut_cb },
- { &quot;&amp;Copy&quot;, FL_ALT + 'c', copy_cb },
- { &quot;&amp;Paste&quot;, FL_ALT + 'v', paste_cb },
- { &quot;&amp;Delete&quot;, 0, delete_cb },
+ { "&amp;Edit", 0, 0, 0, FL_SUBMENU },
+ { "&amp;Undo", FL_ALT + 'z', (Fl_Callback *)undo_cb, 0, FL_MENU_DIVIDER },
+ { "Cu&amp;t", FL_ALT + 'x', (Fl_Callback *)cut_cb },
+ { "&amp;Copy", FL_ALT + 'c', (Fl_Callback *)copy_cb },
+ { "&amp;Paste", FL_ALT + 'v', (Fl_Callback *)paste_cb },
+ { "&amp;Delete", 0, (Fl_Callback *)delete_cb },
{ 0 },
- { &quot;&amp;Search&quot;, 0, 0, 0, FL_SUBMENU },
- { &quot;&amp;Find...&quot;, FL_ALT + 'f', find_cb },
- { &quot;F&amp;ind Again&quot;, FL_ALT + 'g', find2_cb },
- { &quot;&amp;Replace...&quot;, FL_ALT + 'r', replace_cb },
- { &quot;Re&amp;place Again&quot;, FL_ALT + 't', replace2_cb },
+ { "&amp;Search", 0, 0, 0, FL_SUBMENU },
+ { "&amp;Find...", FL_ALT + 'f', (Fl_Callback *)find_cb },
+ { "F&amp;ind Again", FL_ALT + 'g', (Fl_Callback *)find2_cb },
+ { "&amp;Replace...", FL_ALT + 'r', (Fl_Callback *)replace_cb },
+ { "Re&amp;place Again", FL_ALT + 't', (Fl_Callback *)replace2_cb },
{ 0 },
{ 0 }
diff --git a/documentation/index.html b/documentation/index.html
index c11f57ae7..21e1907fb 100644
--- a/documentation/index.html
+++ b/documentation/index.html
@@ -8,8 +8,8 @@
<TR>
<TD ALIGN=CENTER VALIGN=MIDDLE><IMG SRC=FL.gif ALIGN=ABSMIDDLE></TD>
<TD ALIGN=CENTER VALIGN=MIDDLE>
-<H1>FLTK 1.0 Programming Manual</H1>
-Revision 7 by Michael Sweet, Craig P. Earls, and Bill Spitzak<BR>
+<H1>FLTK 1.0.1 Programming Manual</H1>
+Revision 8 by Michael Sweet, Craig P. Earls, and Bill Spitzak<BR>
Copyright 1998-1999 by Bill Spitzak and others.<BR>
</TD>
</TR>
diff --git a/documentation/preface.html b/documentation/preface.html
index 8d2b6076d..753007eed 100644
--- a/documentation/preface.html
+++ b/documentation/preface.html
@@ -2,8 +2,8 @@
<HEAD>
<META CONTENT="Written by Michael Sweet, Craig P. Earls, and Bill Spitzak" NAME=Author>
<META CONTENT="Copyright 1998-1999 by Bill Spitzak and Others." NAME=Copyright>
- <META CONTENT="Revision 7" NAME=DocNumber>
- <TITLE>FLTK 1.0 Programming Manual</TITLE>
+ <META CONTENT="Revision 8" NAME=DocNumber>
+ <TITLE>FLTK 1.0.1 Programming Manual</TITLE>
</HEAD>
<BODY>
<H1 ALIGN=RIGHT><A NAME=preface>Preface</A></H1>