MaskEdit: make SetSel() and GetSel() protected.

Reason: Delphi compatibility (Issue #0024970).

git-svn-id: trunk@42665 -
This commit is contained in:
bart 2013-09-07 16:25:41 +00:00
parent 319a201329
commit 7ae07addc0

View File

@ -199,8 +199,6 @@ const
procedure JumpToNextDot(Dot: Char);
function HasSelection: Boolean;
function HasExtSelection: Boolean;
procedure GetSel(out _SelStart: Integer; out _SelStop: Integer);
procedure SetSel(const _SelStart: Integer; _SelStop: Integer);
Function CharToMask(UCh : TUtf8Char) : tMaskedType;
Function MaskToChar(Value : tMaskedType) : Char;
@ -219,6 +217,8 @@ const
function DisableMask(const NewText: String): Boolean;
function RestoreMask(const NewText: String): Boolean;
procedure GetSel(out _SelStart: Integer; out _SelStop: Integer);
procedure SetSel(const _SelStart: Integer; _SelStop: Integer);
Function GetText : TCaption;
Procedure SetText(Value: TCaption);
function GetEditText: string; virtual;