From 9c209dac9a345164b65d55034adc516986686f37 Mon Sep 17 00:00:00 2001 From: mattias Date: Sat, 13 May 2006 13:29:47 +0000 Subject: [PATCH] fixed compilation git-svn-id: trunk@9276 - --- .gitattributes | 1 + lcl/helpintfs.pas | 45 +++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 46 insertions(+) create mode 100644 lcl/helpintfs.pas diff --git a/.gitattributes b/.gitattributes index c971954d05..f9c41c306a 100644 --- a/.gitattributes +++ b/.gitattributes @@ -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 diff --git a/lcl/helpintfs.pas b/lcl/helpintfs.pas new file mode 100644 index 0000000000..d774ad796f --- /dev/null +++ b/lcl/helpintfs.pas @@ -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. +