Changeset 272 for branches/highdpi/Packages/DpiControls/UDpiControls.pas
- Timestamp:
- Jul 2, 2020, 11:15:34 PM (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/highdpi/Packages/DpiControls/UDpiControls.pas
r271 r272 592 592 TDpiEdit = class(TDpiWinControl) 593 593 private 594 FText: string;595 594 function GetSelLength: Integer; 596 595 function GetSelStart: Integer; … … 1282 1281 function TDpiEdit.GetText: TCaption; 1283 1282 begin 1284 Result := FText;1283 Result := GetNativeEdit.Text; 1285 1284 end; 1286 1285 1287 1286 procedure TDpiEdit.SetText(AValue: TCaption); 1288 1287 begin 1289 FText := AValue;1290 1288 GetNativeEdit.Text := AValue; 1291 1289 end;
Note:
See TracChangeset
for help on using the changeset viewer.