mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-05 01:08:12 +02:00
lazwiki: fixed compile
This commit is contained in:
parent
a7b3a555a2
commit
eb2a771f19
1
components/wiki/.gitignore
vendored
Normal file
1
components/wiki/.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
parsewikipage
|
@ -136,6 +136,11 @@ const
|
||||
NOTE_ICON = 'note.png';
|
||||
WARNING_ICON = 'warning.png';
|
||||
|
||||
function CompareStrListUTF8LowerCase(List: TStringList; Index1, Index2: Integer): Integer;
|
||||
begin
|
||||
Result:=UTF8CompareText(List[Index1],List[Index2]);
|
||||
end;
|
||||
|
||||
{ Replaces some special characters by their HTML code }
|
||||
function EscapeToHTML(AText: string): string;
|
||||
var
|
||||
@ -226,7 +231,6 @@ begin
|
||||
end;
|
||||
end;
|
||||
|
||||
|
||||
procedure TWiki2XHTMLConverter.DoAddLinksToTranslations(Page: TW2XHTMLPage);
|
||||
var
|
||||
TranslationPage: TW2XHTMLPage;
|
||||
|
Loading…
Reference in New Issue
Block a user