TWSTaskDialog: change signature of Execute method. Reason: TTaskDialog is not related to TCommonDialog.

Eventually we need to cast the parameter to TCustomTaskDialog in the Win32 implementation.
Because of the (Delhi compatible) signature of TTaskDialog.DoExcute, it seems that TCustomTaskDialog cannot
inherit from TCommonDialog, since this method (TCustomTaskDialog.DoExecute) must be dynamic, so it cannot
also be "override" as well.
This commit is contained in:
Bart 2023-07-17 12:43:04 +02:00
parent cfbb089e1f
commit 57e13c67d3
2 changed files with 5 additions and 5 deletions

View File

@ -161,7 +161,7 @@ type
TWin32WSTaskDialog = class(TWSTaskDialog)
public
class function Execute(const ACommonDialog: TCommonDialog): Boolean; override;
class function Execute(const ADlg: TCustomTaskDialog): Boolean; override;
end;
function OpenFileDialogCallBack(Wnd: HWND; uMsg: UINT; {%H-}wParam: WPARAM;
@ -1574,9 +1574,9 @@ end;
{ TWin32WSTaskDialog }
class function TWin32WSTaskDialog.Execute(const ACommonDialog: TCommonDialog): Boolean;
class function TWin32WSTaskDialog.Execute(const ADlg: TCustomTaskDialog): Boolean;
begin
Result := inherited Execute(ACommonDialog);
Result := inherited Execute(ADlg);
end;
initialization

View File

@ -106,7 +106,7 @@ type
TWSTaskDialog = class(TWSCommonDialog)
published
class function Execute(const ACommonDialog: TCommonDialog): Boolean; virtual;
class function Execute(const ADlg: TCustomTaskDialog): Boolean; virtual;
end;
{ WidgetSetRegistration }
@ -198,7 +198,7 @@ end;
{ TWSTaskDialog }
class function TWSTaskDialog.Execute(const ACommonDialog: TCommonDialog): Boolean;
class function TWSTaskDialog.Execute(const ADlg: TCustomTaskDialog): Boolean;
begin
//ToDo call new LCLTaskDialog.Execute
Result := False;