RxCurrencyEdit - display edit empty value for 0 if ZeroEmpty=true

git-svn-id: https://svn.code.sf.net/p/lazarus-ccr/svn@3662 8e941d3f-bd1b-0410-a28a-d453659cc2b4
This commit is contained in:
alexs75 2014-10-16 11:46:48 +00:00
parent 7d32a9d9c4
commit b839d15d7b

View File

@ -291,6 +291,9 @@ end;
function TCustomNumEdit.GetText: string;
begin
if (FValue = 0) and FZeroEmpty then
Result:=''
else
Result := FloatToStr(FValue);
end;
@ -448,10 +451,6 @@ begin
exit;
FFocusedDisplay := true;
Reset;
{ if WidgetSet.GetLCLCapability(lcReceivesLMClearCutCopyPasteReliably) = LCL_CAPABILITY_YES then
FDataLink.Reset
else
FDataLink.Edit;}
end;
procedure TCustomNumEdit.WMKillFocus(var Message: TLMKillFocus);