You've already forked lazarus-ccr
jvcllaz: Fix compilation (missing file in prev commit)
git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@6248 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
@ -14,7 +14,7 @@ implementation
|
|||||||
{$R ../../resource/jvdbreg.res}
|
{$R ../../resource/jvdbreg.res}
|
||||||
|
|
||||||
uses
|
uses
|
||||||
Classes, JvDsgnConsts, JvDBSearchEdit, JvDBHTLabel; //, JvDBTreeView;
|
Classes, JvDsgnConsts, {JvDBSearchCombobox,} JvDBSearchEdit, JvDBHTLabel; //, JvDBTreeView;
|
||||||
|
|
||||||
procedure Register;
|
procedure Register;
|
||||||
const
|
const
|
||||||
@ -37,6 +37,7 @@ const
|
|||||||
begin
|
begin
|
||||||
RegisterComponents(RsPaletteJvclDB, [ // was: TsPaletteDBVisual
|
RegisterComponents(RsPaletteJvclDB, [ // was: TsPaletteDBVisual
|
||||||
TJvDBSearchEdit,
|
TJvDBSearchEdit,
|
||||||
|
// TJvDBSearchCombobox,
|
||||||
TJvDBHtLabel
|
TJvDBHtLabel
|
||||||
// TJvDBTreeView
|
// TJvDBTreeView
|
||||||
]);
|
]);
|
||||||
|
@ -16,19 +16,15 @@
|
|||||||
- Hypertext components "/>
|
- Hypertext components "/>
|
||||||
<License Value="The JVCL is released in accordance with the MPL 1.1 license. To get your own copy or read it, go to http://www.mozilla.org/MPL/MPL-1.1.html. "/>
|
<License Value="The JVCL is released in accordance with the MPL 1.1 license. To get your own copy or read it, go to http://www.mozilla.org/MPL/MPL-1.1.html. "/>
|
||||||
<Version Major="1" Release="4"/>
|
<Version Major="1" Release="4"/>
|
||||||
<Files Count="3">
|
<Files Count="2">
|
||||||
<Item1>
|
<Item1>
|
||||||
<Filename Value="..\run\JvDB\JvDBHTLabel.pas"/>
|
<Filename Value="..\run\JvDB\JvDBHTLabel.pas"/>
|
||||||
<UnitName Value="JvDBHTLabel"/>
|
<UnitName Value="JvDBHTLabel"/>
|
||||||
</Item1>
|
</Item1>
|
||||||
<Item2>
|
<Item2>
|
||||||
<Filename Value="..\run\JvDB\JvDBTreeView.pas"/>
|
|
||||||
<UnitName Value="JvDBTreeView"/>
|
|
||||||
</Item2>
|
|
||||||
<Item3>
|
|
||||||
<Filename Value="..\run\JvDB\JvDBSearchEdit.pas"/>
|
<Filename Value="..\run\JvDB\JvDBSearchEdit.pas"/>
|
||||||
<UnitName Value="JvDBSearchEdit"/>
|
<UnitName Value="JvDBSearchEdit"/>
|
||||||
</Item3>
|
</Item2>
|
||||||
</Files>
|
</Files>
|
||||||
<RequiredPkgs Count="3">
|
<RequiredPkgs Count="3">
|
||||||
<Item1>
|
<Item1>
|
||||||
|
@ -31,8 +31,6 @@ unit JvDBHTLabel;
|
|||||||
|
|
||||||
{$mode objfpc}{$H+}
|
{$mode objfpc}{$H+}
|
||||||
|
|
||||||
//{.$I jvcl.inc}
|
|
||||||
|
|
||||||
interface
|
interface
|
||||||
|
|
||||||
uses
|
uses
|
||||||
|
@ -29,15 +29,13 @@ Description:
|
|||||||
|
|
||||||
unit JvDBSearchEdit;
|
unit JvDBSearchEdit;
|
||||||
|
|
||||||
|
{$mode objfpc}{$H+}
|
||||||
|
|
||||||
interface
|
interface
|
||||||
|
|
||||||
uses
|
uses
|
||||||
// Windows,
|
|
||||||
// Messages,
|
|
||||||
LCLType, LCLIntf, LMessages,
|
LCLType, LCLIntf, LMessages,
|
||||||
Classes, Controls, StdCtrls, DB, DBCtrls;
|
Classes, Controls, StdCtrls, DB, DBCtrls;
|
||||||
// JvEdit;
|
|
||||||
|
|
||||||
type
|
type
|
||||||
TJvDBCustomSearchEdit = class(TCustomEdit) //JvCustomEdit)
|
TJvDBCustomSearchEdit = class(TCustomEdit) //JvCustomEdit)
|
||||||
|
Reference in New Issue
Block a user