mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-13 23:49:13 +02:00
Qt,Qt5: call inherited Create for TStrings.
git-svn-id: branches/fixes_2_0@60182 -
This commit is contained in:
parent
651746a306
commit
b21c0f8f75
@ -4764,12 +4764,14 @@ end;
|
|||||||
|
|
||||||
constructor TQtStringList.Create;
|
constructor TQtStringList.Create;
|
||||||
begin
|
begin
|
||||||
|
inherited Create;
|
||||||
FHandle := QStringList_create();
|
FHandle := QStringList_create();
|
||||||
FOwnHandle := True;
|
FOwnHandle := True;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
constructor TQtStringList.Create(Source: QStringListH);
|
constructor TQtStringList.Create(Source: QStringListH);
|
||||||
begin
|
begin
|
||||||
|
inherited Create;
|
||||||
FHandle := Source;
|
FHandle := Source;
|
||||||
FOwnHandle := False;
|
FOwnHandle := False;
|
||||||
end;
|
end;
|
||||||
|
@ -4761,12 +4761,14 @@ end;
|
|||||||
|
|
||||||
constructor TQtStringList.Create;
|
constructor TQtStringList.Create;
|
||||||
begin
|
begin
|
||||||
|
inherited Create;
|
||||||
FHandle := QStringList_create();
|
FHandle := QStringList_create();
|
||||||
FOwnHandle := True;
|
FOwnHandle := True;
|
||||||
end;
|
end;
|
||||||
|
|
||||||
constructor TQtStringList.Create(Source: QStringListH);
|
constructor TQtStringList.Create(Source: QStringListH);
|
||||||
begin
|
begin
|
||||||
|
inherited Create;
|
||||||
FHandle := Source;
|
FHandle := Source;
|
||||||
FOwnHandle := False;
|
FOwnHandle := False;
|
||||||
end;
|
end;
|
||||||
|
Loading…
Reference in New Issue
Block a user