diff options
author | Graeme Geldenhuys <graemeg@gmail.com> | 2009-10-11 20:10:13 +0200 |
---|---|---|
committer | Graeme Geldenhuys <graemeg@gmail.com> | 2009-10-11 20:10:13 +0200 |
commit | f7424b70f7396019aef6152c73f4c5ef488fad45 (patch) | |
tree | c4bc6c0c916e8aea641b7ed1bc42112f077aaa81 | |
parent | c5101ca74ecea2069f6002b4e56f83c59a77e810 (diff) | |
download | fpGUI-f7424b70f7396019aef6152c73f4c5ef488fad45.tar.xz |
RichView packages shares the nvUtilities unit with help viewer.
-rwxr-xr-x | components/richtext/fpgui_richtext.lpk | 17 | ||||
-rwxr-xr-x | components/richtext/fpgui_richtext.pas | 6 |
2 files changed, 10 insertions, 13 deletions
diff --git a/components/richtext/fpgui_richtext.lpk b/components/richtext/fpgui_richtext.lpk index f3b4823c..64a4f50b 100755 --- a/components/richtext/fpgui_richtext.lpk +++ b/components/richtext/fpgui_richtext.lpk @@ -7,6 +7,7 @@ <CompilerOptions> <Version Value="8"/> <SearchPaths> + <OtherUnitFiles Value="../../src/"/> <UnitOutputDirectory Value="lib/$(TargetCPU)-$(TargetOS)"/> </SearchPaths> <Parsing> @@ -29,7 +30,7 @@ <Description Value="RichTextView component"/> <License Value="LGPL2 with static linking exception."/> <Version Minor="1"/> - <Files Count="8"> + <Files Count="7"> <Item1> <Filename Value="RichTextDocumentUnit.pas"/> <UnitName Value="RichTextDocumentUnit"/> @@ -47,21 +48,17 @@ <UnitName Value="RichTextStyleUnit"/> </Item4> <Item5> - <Filename Value="nvUtilities.pas"/> - <UnitName Value="nvUtilities"/> - </Item5> - <Item6> <Filename Value="RichTextLayoutUnit.pas"/> <UnitName Value="RichTextLayoutUnit"/> - </Item6> - <Item7> + </Item5> + <Item6> <Filename Value="RichTextDisplayUnit.pas"/> <UnitName Value="RichTextDisplayUnit"/> - </Item7> - <Item8> + </Item6> + <Item7> <Filename Value="RichTextView.pas"/> <UnitName Value="RichTextView"/> - </Item8> + </Item7> </Files> <RequiredPkgs Count="2"> <Item1> diff --git a/components/richtext/fpgui_richtext.pas b/components/richtext/fpgui_richtext.pas index 0c049f2a..221e749c 100755 --- a/components/richtext/fpgui_richtext.pas +++ b/components/richtext/fpgui_richtext.pas @@ -1,4 +1,4 @@ -{ This file was automatically created by Lazarus. do not edit ! +{ This file was automatically created by Lazarus. do not edit! This source is only used to compile and install the package. } @@ -7,8 +7,8 @@ unit fpgui_richtext; interface uses - RichTextDocumentUnit, ACLStringUtility, CanvasFontManager, RichTextStyleUnit, - nvUtilities, RichTextLayoutUnit, RichTextDisplayUnit, RichTextView; + RichTextDocumentUnit, ACLStringUtility, CanvasFontManager, + RichTextStyleUnit, RichTextLayoutUnit, RichTextDisplayUnit, RichTextView; implementation |