Sparta docked formeditor: Change visibility of methods so it compiles with FPC trunk. Issue #34816

git-svn-id: branches/fixes_2_0@60197 -
This commit is contained in:
mattias 2019-01-24 09:49:35 +00:00
parent 1a43728757
commit bba73073f1

View File

@ -19,17 +19,14 @@ type
FHackTop: Integer;
FHackWidth: Integer;
FHackHeight: Integer;
private
FOnChangeHackedBounds: TNotifyEvent;
procedure SetOnChangeHackedBounds(const AValue: TNotifyEvent);
function GetOnChangeHackedBounds: TNotifyEvent;
function PositionDelta: TPoint;
protected
FForm: TCustomForm;
FUpdate: boolean;
protected
procedure SetOnChangeHackedBounds(const AValue: TNotifyEvent);
function GetOnChangeHackedBounds: TNotifyEvent;
function PositionDelta: TPoint;
function GetRealBounds(AIndex: Integer): Integer; virtual;
procedure SetRealBounds(AIndex: Integer; AValue: Integer); virtual;
function GetPublishedBounds(AIndex: Integer): Integer; virtual;
@ -56,7 +53,7 @@ type
function GetForm: TCustomForm; virtual;
function GetUpdate: Boolean; virtual;
protected
procedure DoChangeHackedBounds; virtual;
function GetLogicalClientRect(ALogicalClientRect: TRect): TRect; virtual;