fixed compilation

git-svn-id: trunk@9276 -
This commit is contained in:
mattias 2006-05-13 13:29:47 +00:00
parent 1202899898
commit 9c209dac9a
2 changed files with 46 additions and 0 deletions

1
.gitattributes vendored
View File

@ -1848,6 +1848,7 @@ lcl/graphics.pp svneol=native#text/pascal
lcl/graphmath.pp svneol=native#text/pascal
lcl/graphtype.pp 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/btncalcimg.xpm -text svneol=native#image/x-xpixmap
lcl/images/btncalcmin.xpm -text svneol=native#image/x-xpixmap

45
lcl/helpintfs.pas Normal file
View 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.