mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-18 19:59:31 +02:00
fixed compilation
git-svn-id: trunk@9276 -
This commit is contained in:
parent
1202899898
commit
9c209dac9a
1
.gitattributes
vendored
1
.gitattributes
vendored
@ -1848,6 +1848,7 @@ lcl/graphics.pp svneol=native#text/pascal
|
|||||||
lcl/graphmath.pp svneol=native#text/pascal
|
lcl/graphmath.pp svneol=native#text/pascal
|
||||||
lcl/graphtype.pp svneol=native#text/pascal
|
lcl/graphtype.pp svneol=native#text/pascal
|
||||||
lcl/grids.pas svneol=native#text/pascal
|
lcl/grids.pas svneol=native#text/pascal
|
||||||
|
lcl/helpintfs.pas svneol=native#text/plain
|
||||||
lcl/images/btncalccancel.xpm -text svneol=native#image/x-xpixmap
|
lcl/images/btncalccancel.xpm -text svneol=native#image/x-xpixmap
|
||||||
lcl/images/btncalcimg.xpm -text svneol=native#image/x-xpixmap
|
lcl/images/btncalcimg.xpm -text svneol=native#image/x-xpixmap
|
||||||
lcl/images/btncalcmin.xpm -text svneol=native#image/x-xpixmap
|
lcl/images/btncalcmin.xpm -text svneol=native#image/x-xpixmap
|
||||||
|
45
lcl/helpintfs.pas
Normal file
45
lcl/helpintfs.pas
Normal file
@ -0,0 +1,45 @@
|
|||||||
|
{
|
||||||
|
/***************************************************************************
|
||||||
|
helpintfs.pas
|
||||||
|
-------------
|
||||||
|
Component Library Code
|
||||||
|
|
||||||
|
|
||||||
|
***************************************************************************/
|
||||||
|
|
||||||
|
*****************************************************************************
|
||||||
|
* *
|
||||||
|
* This file is part of the Lazarus Component Library (LCL) *
|
||||||
|
* *
|
||||||
|
* See the file COPYING.modifiedLGPL, included in this distribution, *
|
||||||
|
* for details about the copyright. *
|
||||||
|
* *
|
||||||
|
* This program is distributed in the hope that it will be useful, *
|
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of *
|
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. *
|
||||||
|
* *
|
||||||
|
*****************************************************************************
|
||||||
|
|
||||||
|
Author: Mattias Gaertner
|
||||||
|
|
||||||
|
Abstract:
|
||||||
|
Interfaces to define the abstract HelpSystem.
|
||||||
|
You can create your own HelpSystem based on these interfaces
|
||||||
|
or use the LCL help system in lazhelpsystem.pas.
|
||||||
|
The THTMLHelpDatabase and THTMLBrowserHelpViewer in helphtml.pas use the
|
||||||
|
LCL help system.
|
||||||
|
}
|
||||||
|
unit HelpIntfs;
|
||||||
|
|
||||||
|
{$mode objfpc}{$H+}
|
||||||
|
|
||||||
|
interface
|
||||||
|
|
||||||
|
uses
|
||||||
|
Classes, SysUtils;
|
||||||
|
|
||||||
|
|
||||||
|
implementation
|
||||||
|
|
||||||
|
end.
|
||||||
|
|
Loading…
Reference in New Issue
Block a user