mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-08-12 05:55:54 +02:00
Qt,Qt5: call inherited Create for TStrings
git-svn-id: trunk@60076 -
This commit is contained in:
parent
361e42f65a
commit
e7abcc7ff1
@ -4765,12 +4765,14 @@ end;
|
||||
|
||||
constructor TQtStringList.Create;
|
||||
begin
|
||||
inherited Create;
|
||||
FHandle := QStringList_create();
|
||||
FOwnHandle := True;
|
||||
end;
|
||||
|
||||
constructor TQtStringList.Create(Source: QStringListH);
|
||||
begin
|
||||
inherited Create;
|
||||
FHandle := Source;
|
||||
FOwnHandle := False;
|
||||
end;
|
||||
|
@ -4762,12 +4762,14 @@ end;
|
||||
|
||||
constructor TQtStringList.Create;
|
||||
begin
|
||||
inherited Create;
|
||||
FHandle := QStringList_create();
|
||||
FOwnHandle := True;
|
||||
end;
|
||||
|
||||
constructor TQtStringList.Create(Source: QStringListH);
|
||||
begin
|
||||
inherited Create;
|
||||
FHandle := Source;
|
||||
FOwnHandle := False;
|
||||
end;
|
||||
|
Loading…
Reference in New Issue
Block a user