RxFPC:fix compile after lazarus rev.57722

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@6360 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
alexs75
2018-04-27 06:11:12 +00:00
parent 468c8c7e08
commit ffd8d74165

View File

@ -114,7 +114,9 @@ type
procedure EditKeyDown(var Key: word; Shift: TShiftState); override;
procedure EditKeyPress( var Key: char); override;
{$IF lcl_fullversion < 01090000}
function GetDefaultGlyph: TBitmap; override;
{$ENDIF}
function GetDefaultGlyphName: String; override;
function CreatePopupForm:TPopupCalendar;
procedure DoEnter; override;
@ -849,17 +851,15 @@ begin
end;
end;
{$IF lcl_fullversion < 01090000}
function TCustomRxDateEdit.GetDefaultGlyph: TBitmap;
var
R: TRect;
B: TCustomBitmap;
begin
{$IF lcl_fullversion < 01090000}
Result := nil;
{$ELSE}
Result := DateGlyph;
{$ENDIF}
end;
{$ENDIF}
function TCustomRxDateEdit.GetDefaultGlyphName: String;
begin