mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-05 23:58:06 +02:00
Qt5,Qt6: fixed QtComboBox sorted property. issue #41502
This commit is contained in:
parent
33ef9e8b6a
commit
00a355408e
@ -529,8 +529,7 @@ procedure TQtComboStrings.SetSorted(AValue: Boolean);
|
||||
begin
|
||||
if FSorted=AValue then Exit;
|
||||
FSorted:=AValue;
|
||||
if FSorted then
|
||||
Sort;
|
||||
inherited Sorted:=FSorted;
|
||||
end;
|
||||
|
||||
procedure TQtComboStrings.Put(Index: Integer; const S: string);
|
||||
|
@ -528,8 +528,7 @@ procedure TQtComboStrings.SetSorted(AValue: Boolean);
|
||||
begin
|
||||
if FSorted=AValue then Exit;
|
||||
FSorted:=AValue;
|
||||
if FSorted then
|
||||
Sort;
|
||||
inherited Sorted:=FSorted;
|
||||
end;
|
||||
|
||||
procedure TQtComboStrings.Put(Index: Integer; const S: string);
|
||||
|
Loading…
Reference in New Issue
Block a user