renamed unit1 to lhelpcore

git-svn-id: trunk@8376 -
This commit is contained in:
andrew 2005-12-27 14:56:28 +00:00
parent 753ea08fa2
commit 715171e521
6 changed files with 28 additions and 18 deletions

6
.gitattributes vendored
View File

@ -22,9 +22,9 @@ components/chmhelp/lhelp/chmspecialparser.pas svneol=native#text/plain
components/chmhelp/lhelp/lhelp.lpi svneol=native#text/plain components/chmhelp/lhelp/lhelp.lpi svneol=native#text/plain
components/chmhelp/lhelp/lhelp.lpr svneol=native#text/plain components/chmhelp/lhelp/lhelp.lpr svneol=native#text/plain
components/chmhelp/lhelp/lhelpcontrol.pas svneol=native#text/plain components/chmhelp/lhelp/lhelpcontrol.pas svneol=native#text/plain
components/chmhelp/lhelp/unit1.lfm svneol=native#text/plain components/chmhelp/lhelp/lhelpcore.lfm svneol=native#text/plain
components/chmhelp/lhelp/unit1.lrs svneol=native#text/plain components/chmhelp/lhelp/lhelpcore.lrs svneol=native#text/plain
components/chmhelp/lhelp/unit1.pas svneol=native#text/plain components/chmhelp/lhelp/lhelpcore.pas svneol=native#text/plain
components/chmhelp/packages/chm/chmbase.pas svneol=native#text/plain components/chmhelp/packages/chm/chmbase.pas svneol=native#text/plain
components/chmhelp/packages/chm/chmpkg.lpk svneol=native#text/plain components/chmhelp/packages/chm/chmpkg.lpk svneol=native#text/plain
components/chmhelp/packages/chm/chmpkg.pas svneol=native#text/plain components/chmhelp/packages/chm/chmpkg.pas svneol=native#text/plain

View File

@ -13,22 +13,19 @@
<ActiveEditorIndexAtStart Value="0"/> <ActiveEditorIndexAtStart Value="0"/>
</General> </General>
<LazDoc Paths=""/> <LazDoc Paths=""/>
<Units Count="77"> <Units Count="78">
<Unit0> <Unit0>
<CursorPos X="6" Y="26"/> <CursorPos X="18" Y="46"/>
<Filename Value="lhelp.lpr"/> <Filename Value="lhelp.lpr"/>
<IsPartOfProject Value="True"/> <IsPartOfProject Value="True"/>
<TopLine Value="1"/> <TopLine Value="3"/>
<UnitName Value="lhelp"/> <UnitName Value="lhelp"/>
<UsageCount Value="201"/> <UsageCount Value="201"/>
</Unit0> </Unit0>
<Unit1> <Unit1>
<CursorPos X="49" Y="80"/> <CursorPos X="49" Y="80"/>
<EditorIndex Value="0"/>
<Filename Value="unit1.pas"/> <Filename Value="unit1.pas"/>
<ComponentName Value="HelpForm"/> <ComponentName Value="HelpForm"/>
<IsPartOfProject Value="True"/>
<Loaded Value="True"/>
<ResourceFilename Value="unit1.lrs"/> <ResourceFilename Value="unit1.lrs"/>
<TopLine Value="59"/> <TopLine Value="59"/>
<UnitName Value="unit1"/> <UnitName Value="unit1"/>
@ -550,6 +547,19 @@
<UnitName Value="paslzx"/> <UnitName Value="paslzx"/>
<UsageCount Value="10"/> <UsageCount Value="10"/>
</Unit76> </Unit76>
<Unit77>
<CursorPos X="1" Y="1"/>
<EditorIndex Value="0"/>
<Filename Value="lhelpcore.pas"/>
<ComponentName Value="HelpForm"/>
<HasResources Value="True"/>
<IsPartOfProject Value="True"/>
<Loaded Value="True"/>
<ResourceFilename Value="lhelpcore.lrs"/>
<TopLine Value="1"/>
<UnitName Value="lhelpcore"/>
<UsageCount Value="20"/>
</Unit77>
</Units> </Units>
<PublishOptions> <PublishOptions>
<Version Value="2"/> <Version Value="2"/>
@ -581,12 +591,12 @@
</RequiredPackages> </RequiredPackages>
<JumpHistory Count="2" HistoryIndex="1"> <JumpHistory Count="2" HistoryIndex="1">
<Position1> <Position1>
<Filename Value="unit1.pas"/> <Filename Value="lhelpcore.pas"/>
<Caret Line="143" Column="13" TopLine="120"/> <Caret Line="3" Column="5" TopLine="1"/>
</Position1> </Position1>
<Position2> <Position2>
<Filename Value="unit1.pas"/> <Filename Value="lhelpcore.pas"/>
<Caret Line="25" Column="71" TopLine="1"/> <Caret Line="566" Column="4" TopLine="523"/>
</Position2> </Position2>
</JumpHistory> </JumpHistory>
</ProjectOptions> </ProjectOptions>

View File

@ -22,8 +22,8 @@ program lhelp;
uses uses
Interfaces, // this includes the LCL widgetset Interfaces, // this includes the LCL widgetset
Forms Forms
{ add your units here }, unit1, TurboPowerIPro, chmpopup, lhelpcontrolpkg, { add your units here }, TurboPowerIPro, chmpopup, lhelpcontrolpkg,
chmpkg; chmpkg, lhelpcore;
var var
X: Integer; X: Integer;
begin begin

View File

@ -1,4 +1,4 @@
{ Copyright (C) <2005> <Andrew Haines> unit1.pas consisting of THelpForm { Copyright (C) <2005> <Andrew Haines> lhelpcore.pas
This source is free software; you can redistribute it and/or modify it under This source is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free the terms of the GNU General Public License as published by the Free
@ -15,7 +15,7 @@
to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston,
MA 02111-1307, USA. MA 02111-1307, USA.
} }
unit unit1; unit lhelpcore;
{$mode objfpc}{$H+} {$mode objfpc}{$H+}
@ -563,7 +563,7 @@ begin
end; end;
initialization initialization
{$I unit1.lrs} {$I lhelpcore.lrs}
end. end.