mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-06 05:38:25 +02:00
Qt,Qt5,Qt6: do not clear editable combobox edit text if items are cleared. issue #40734
This commit is contained in:
parent
5c01e6a88e
commit
1dbfb8fee2
@ -571,13 +571,21 @@ begin
|
||||
end;
|
||||
|
||||
procedure TQtComboStrings.Clear;
|
||||
var
|
||||
AText: WideString;
|
||||
begin
|
||||
inherited Clear;
|
||||
|
||||
if Assigned(FWinControl) and (FWinControl.HandleAllocated) then
|
||||
begin
|
||||
FOwner.BeginUpdate;
|
||||
if FOwner.getEditable then
|
||||
AText := FOwner.LineEdit.getText
|
||||
else
|
||||
AText := '';
|
||||
FOwner.ClearItems;
|
||||
if (AText <> '') then
|
||||
FOwner.setText(AText);
|
||||
FOwner.EndUpdate;
|
||||
end;
|
||||
end;
|
||||
|
@ -572,13 +572,21 @@ begin
|
||||
end;
|
||||
|
||||
procedure TQtComboStrings.Clear;
|
||||
var
|
||||
AText: WideString;
|
||||
begin
|
||||
inherited Clear;
|
||||
|
||||
if Assigned(FWinControl) and (FWinControl.HandleAllocated) then
|
||||
begin
|
||||
FOwner.BeginUpdate;
|
||||
if FOwner.getEditable then
|
||||
AText := FOwner.LineEdit.getText
|
||||
else
|
||||
AText := '';
|
||||
FOwner.ClearItems;
|
||||
if (AText <> '') then
|
||||
FOwner.setText(AText);
|
||||
FOwner.EndUpdate;
|
||||
end;
|
||||
end;
|
||||
|
@ -575,13 +575,21 @@ begin
|
||||
end;
|
||||
|
||||
procedure TQtComboStrings.Clear;
|
||||
var
|
||||
AText: WideString;
|
||||
begin
|
||||
inherited Clear;
|
||||
|
||||
if Assigned(FWinControl) and (FWinControl.HandleAllocated) then
|
||||
begin
|
||||
FOwner.BeginUpdate;
|
||||
if FOwner.getEditable then
|
||||
AText := FOwner.LineEdit.getText
|
||||
else
|
||||
AText := '';
|
||||
FOwner.ClearItems;
|
||||
if (AText <> '') then
|
||||
FOwner.setText(AText);
|
||||
FOwner.EndUpdate;
|
||||
end;
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user