Fl_Help_View: fix table header in help_dialog.html (STR #3227).

The html code in the example (test/help_dialog.html) was broken.
Fixing the example html code was enough, no code changes needed.


git-svn-id: file:///fltk/svn/fltk/branches/branch-1.4@12220 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
This commit is contained in:
Albrecht Schlosser 2017-04-21 21:10:12 +00:00
parent 660a65ed01
commit 3ec23df83a
1 changed files with 9 additions and 3 deletions

View File

@ -173,7 +173,9 @@ End of DL.
<P>
<B>Simple Two Column Table With Borders And Heading</B>
<TABLE BORDER=1>
<TH>Table Heading</TH>
<TR>
<TH>Table Heading</TH>
</TR>
<TR>
<TD>Column 1</TD> <TD>Column 2</TD>
</TR><TR>
@ -187,7 +189,9 @@ End of DL.
<P>
<B>Simple Bordered Table With Heading And 10 Cell Padding + Spacing</B>
<TABLE BORDER=1 CELLPADDING=10 CELLSPACING=10>
<TH>Table Heading</TH>
<TR>
<TH>Table Heading</TH>
</TR>
<TR>
<TD>Column 1</TD> <TD>Column 2</TD>
</TR><TR>
@ -201,7 +205,9 @@ End of DL.
<P>
<B>Simple Table Of Images, Two Columns, Three Rows</B>
<TABLE BORDER=1 CELLPADDING=10 CELLSPACING=10>
<TH>Table Heading</TH>
<TR>
<TH>Table Heading</TH>
</TR>
<TR>
<TD>Column 1</TD> <TD>Column 2</TD>
</TR><TR>