August 8, 2021 5:12 PM, "Fabian Maurer" dark.shadow4@web.de wrote:
diff --git a/dlls/msi/dialog.c b/dlls/msi/dialog.c index 703f9d43957..144d7308b3f 100644 --- a/dlls/msi/dialog.c +++ b/dlls/msi/dialog.c @@ -139,6 +139,7 @@ typedef struct
static DWORD uiThreadId; static HWND hMsiHiddenWindow; +static HANDLE hPrevious = NULL;
This is a fairly minor issue, but I don't think using generic 'HANDLE' as the type instead of specific 'HWND' here is a good idea. Also, Hungarian notation is discouraged in Wine now. You don't have to change the other variables; just please don't use Hungarian on new variables that you add.
Chip