Hello,
in version 9.x the following code works fine:
Code:
SkinManager := TsSkinManager.Create(nil);
with SkinManager do begin
Active := False;
SkinDirectory := 'c:skins';
SkinName := 'Air';
Active := True;
end;
In version 10.x it causes an access violation error in sSkinManager unit when activated (row “Active := True”). Using “Application” or “Self” in the Create method, instead to “nil”, all works fine.
It 'something deliberate or is a mistake?
Regards