reorganizing documentation

implemented documentation creation in the build system
some minor code clean-up


git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@2252 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
blaszijk
2012-01-12 13:19:49 +00:00
parent 2cd88d624f
commit 1e4e859bfb
472 changed files with 6499 additions and 7525 deletions

View File

@ -14,7 +14,7 @@ unit nvContext;
interface
uses
Classes, SysUtils, nvTypes, nvPainter, nvBaseFont;
Classes, SysUtils, nvTypes, nvPainter;
type
@ -222,21 +222,11 @@ type
m_uiOnFocus: boolean;
end;
function EvalBool(b: boolean): byte;
implementation
uses
Math;
function EvalBool(b: boolean): byte;
begin
if b then
Result := 1
else
Result := 0;
end;
{ UIContext }
constructor UIContext.Create;