& -> &

This commit is contained in:
dchandler 2003-11-08 03:51:38 +00:00
parent 0ac90d7c0f
commit 9ad767bd22
1 changed files with 2 additions and 2 deletions

View File

@ -305,12 +305,12 @@ public void <B>historyUpdate</B>(<A HREF="../../calpa/html/CalHTMLPane.html">Cal
<code>if (position == CalCons.AT_HISTORY_MIDDLE) { <BR>
&nbsp;&nbsp;&nbsp;&nbsp;//...enable both the 'back' and 'forward' buttons <BR>
} else { <BR>
&nbsp;&nbsp;&nbsp;&nbsp;if ((position & CalCons.AT_HISTORY_TOP) > 0) { <BR>
&nbsp;&nbsp;&nbsp;&nbsp;if ((position &amp; CalCons.AT_HISTORY_TOP) > 0) { <BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//...disable the 'forward' button <BR>
&nbsp;&nbsp;&nbsp;&nbsp;} else { <BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//...enable the 'forward' button <BR>
&nbsp;&nbsp;&nbsp;&nbsp;} <BR>
&nbsp;&nbsp;&nbsp;&nbsp;if ((position & CalCons.AT_HISTORY_BOTTOM) > 0) { <BR>
&nbsp;&nbsp;&nbsp;&nbsp;if ((position &amp; CalCons.AT_HISTORY_BOTTOM) > 0) { <BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//...disable the 'back' button <BR>
&nbsp;&nbsp;&nbsp;&nbsp;} else { <BR>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;//...enable the 'back' button <BR>