mirror of
https://gitlab.com/freepascal.org/lazarus/lazarus.git
synced 2025-04-05 13:38:08 +02:00
Refactoring TTaskDialog:
- TWSTaskDialog.Execute: Don't cast ADlg to TTaskDialog. - Adapt signature of function ExecuteLCLTaskDialog accordingly. - Less debug output
This commit is contained in:
parent
c343cfe0d3
commit
b7cc27d3a5
@ -1867,7 +1867,7 @@ var
|
||||
|
||||
|
||||
begin
|
||||
if IsConsole then writeln('TWin32WSTaskDialog.Execute A');
|
||||
//if IsConsole then writeln('TWin32WSTaskDialog.Execute A');
|
||||
//if not Assigned(TaskDialogIndirect) or
|
||||
if not TaskDialogIndirectAvailable or
|
||||
(tfForceNonNative in ADlg.Flags)
|
||||
|
@ -72,7 +72,7 @@ var
|
||||
TaskDialog_Translate: TTaskDialogTranslate;
|
||||
|
||||
|
||||
function ExecuteLCLTaskDialog(const ADlg: TTaskDialog; AParentWnd: HWND; out ARadioRes: Integer): Integer;
|
||||
function ExecuteLCLTaskDialog(const ADlg: TCustomTaskDialog; AParentWnd: HWND; out ARadioRes: Integer): Integer;
|
||||
|
||||
|
||||
type
|
||||
@ -236,7 +236,7 @@ end;
|
||||
|
||||
|
||||
{ -------------- }
|
||||
function ExecuteLCLTaskDialog(const ADlg: TTaskDialog; AParentWnd: HWND; out ARadioRes: Integer): Integer;
|
||||
function ExecuteLCLTaskDialog(const ADlg: TCustomTaskDialog; AParentWnd: HWND; out ARadioRes: Integer): Integer;
|
||||
var
|
||||
DlgForm: TLCLTaskDialog;
|
||||
begin
|
||||
|
@ -201,7 +201,7 @@ end;
|
||||
class function TWSTaskDialog.Execute(const ADlg: TCustomTaskDialog; AParentWnd: HWND; out ARadioRes: Integer): Integer;
|
||||
begin
|
||||
//writeln('TWSTaskDialog.Execute: Assigned(ADlg)=',Assigned(ADlg));
|
||||
Result := ExecuteLCLTaskDialog(TTaskDialog(ADlg), AParentWnd, ARadiores);
|
||||
Result := ExecuteLCLTaskDialog(ADlg, AParentWnd, ARadiores);
|
||||
end;
|
||||
|
||||
{ WidgetSetRegistration }
|
||||
|
Loading…
Reference in New Issue
Block a user