From 6635435173bfd230e29ad8301f68279b08027ed5 Mon Sep 17 00:00:00 2001 From: bart <9132501-flyingsheep@users.noreply.gitlab.com> Date: Wed, 22 Oct 2014 22:21:47 +0000 Subject: [PATCH] MaskEdit: don't call GetEditText in RealGetText, fixes issue #0026924. git-svn-id: trunk@46643 - --- lcl/maskedit.pp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lcl/maskedit.pp b/lcl/maskedit.pp index 9dc1a6f31e..3ade7166cb 100644 --- a/lcl/maskedit.pp +++ b/lcl/maskedit.pp @@ -1043,7 +1043,7 @@ end; function TCustomMaskEdit.RealGetText: TCaption; begin if not IsMasked then - Result := GetEditText + Result := inherited RealGetText //don't call GetEditText here (issue #0026924) else Result := GetTextWithoutMask; end;