mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-05 16:37:54 +02:00
Compare commits
5 Commits
97b072bf1b
...
c5fc4efa2f
Author | SHA1 | Date | |
---|---|---|---|
![]() |
c5fc4efa2f | ||
![]() |
439afd6033 | ||
![]() |
d070dd6b88 | ||
![]() |
b3ce2c3b9b | ||
![]() |
e0cc3cca3e |
@ -4708,8 +4708,16 @@ begin
|
||||
CreateChildNode;
|
||||
CurNode.Desc:=ctnIdentifier;
|
||||
CurNode.EndPos:=CurPos.EndPos;
|
||||
EndChildNode;
|
||||
ReadNextAtom;
|
||||
while CurPos.Flag = cafPoint do begin
|
||||
// TMyClassClass = class of unit1.TMyClass
|
||||
ReadNextAtom;
|
||||
AtomIsIdentifierSaveE(20250403202500);
|
||||
CurNode.EndPos:=CurPos.EndPos;
|
||||
ReadNextAtom;
|
||||
end;
|
||||
EndChildNode;
|
||||
ReadHintModifiers(False);
|
||||
if CurPos.Flag<>cafSemicolon then
|
||||
SaveRaiseCharExpectedButAtomFound(20170421195756,';');
|
||||
end else begin
|
||||
|
@ -6,6 +6,7 @@ interface
|
||||
|
||||
type
|
||||
TClassOfMy = class of TMy{declaration:fdt_classof.TMy};
|
||||
TClass1OfMy = class of TMy{declaration:fdt_classof.TMy} deprecated 'abc' experimental;
|
||||
|
||||
{ TMy }
|
||||
|
||||
@ -14,6 +15,8 @@ type
|
||||
class procedure Run;
|
||||
end;
|
||||
|
||||
TClass2OfMy = class of fdt_classof.TMy{declaration!:fdt_classof.TMy};
|
||||
|
||||
procedure DoIt;
|
||||
|
||||
implementation
|
||||
|
@ -1434,11 +1434,10 @@ const
|
||||
);
|
||||
begin
|
||||
Result := TWSControlClass(WidgetSetClass).GetDefaultColor(Self, DefaultColorType);
|
||||
if (Result = clDefault) then
|
||||
if ParentColor and Assigned(Parent) then
|
||||
Result := Parent.GetDefaultColor(DefaultColorType)
|
||||
if (Self.Color = clDefault) and ParentColor and Assigned(Parent) then
|
||||
Result := Parent.GetDefaultColor(DefaultColorType) // recursion
|
||||
else
|
||||
Result := DefColors[DefaultColorType];
|
||||
if Result = clDefault then Result := DefColors[DefaultColorType]; // backstop
|
||||
end;
|
||||
|
||||
function TControl.GetColorResolvingParent: TColor;
|
||||
|
@ -81,6 +81,7 @@ begin
|
||||
Parent := Form;
|
||||
ShowBevel := False;
|
||||
ShowButtons := [pbOK, pbCancel];
|
||||
Color:=Parent.GetDefaultColor(dctBrush); // fix for wrong background colour
|
||||
Align := alTop;
|
||||
end;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user