|
@@ -302,11 +302,6 @@ end;
|
|
|
|
|
|
{ TBitmapImage }
|
|
|
|
|
|
-function TBitmapImage.InitializeFromIcon(const Instance: HINST; const Name: PChar; const BkColor: TColor; const AscendingTrySizes: array of Integer): Boolean;
|
|
|
-begin
|
|
|
- Result := FImpl.InitializeFromIcon(HInstance, Name, BkColor, AscendingTrySizes);
|
|
|
-end;
|
|
|
-
|
|
|
constructor TBitmapImage.Create(AOwner: TComponent);
|
|
|
begin
|
|
|
inherited;
|
|
@@ -323,6 +318,11 @@ begin
|
|
|
inherited;
|
|
|
end;
|
|
|
|
|
|
+function TBitmapImage.InitializeFromIcon(const Instance: HINST; const Name: PChar; const BkColor: TColor; const AscendingTrySizes: array of Integer): Boolean;
|
|
|
+begin
|
|
|
+ Result := FImpl.InitializeFromIcon(HInstance, Name, BkColor, AscendingTrySizes);
|
|
|
+end;
|
|
|
+
|
|
|
procedure TBitmapImage.SetAutoSize(Value: Boolean);
|
|
|
begin
|
|
|
FImpl.SetAutoSize(Self, Value);
|