mirror of
https://github.com/valinet/ExplorerPatcher.git
synced 2024-11-14 11:07:36 +01:00
Updated to latest sws
This commit is contained in:
parent
e1570c84e9
commit
c0bdc4346d
@ -51,8 +51,8 @@ END
|
||||
//
|
||||
|
||||
VS_VERSION_INFO VERSIONINFO
|
||||
FILEVERSION 22000,282,32,4
|
||||
PRODUCTVERSION 22000,282,32,4
|
||||
FILEVERSION 22000,282,32,5
|
||||
PRODUCTVERSION 22000,282,32,5
|
||||
FILEFLAGSMASK 0x3fL
|
||||
#ifdef _DEBUG
|
||||
FILEFLAGS 0x1L
|
||||
@ -69,12 +69,12 @@ BEGIN
|
||||
BEGIN
|
||||
VALUE "CompanyName", "VALINET Solutions SRL"
|
||||
VALUE "FileDescription", "ExplorerPatcher"
|
||||
VALUE "FileVersion", "22000.282.32.4"
|
||||
VALUE "FileVersion", "22000.282.32.5"
|
||||
VALUE "InternalName", "ExplorerPatcher.dll"
|
||||
VALUE "LegalCopyright", "Copyright (C) 2006-2021 VALINET Solutions SRL. All rights reserved."
|
||||
VALUE "OriginalFilename", "ExplorerPatcher.dll"
|
||||
VALUE "ProductName", "ExplorerPatcher"
|
||||
VALUE "ProductVersion", "22000.282.32.4"
|
||||
VALUE "ProductVersion", "22000.282.32.5"
|
||||
END
|
||||
END
|
||||
BLOCK "VarFileInfo"
|
||||
|
@ -864,7 +864,7 @@ INT64 Shell_TrayWndSubclassProc(
|
||||
DWORD_PTR dwRefData
|
||||
)
|
||||
{
|
||||
if (uMsg == WM_DESTROY)
|
||||
if (uMsg == WM_NCDESTROY)
|
||||
{
|
||||
RemoveWindowSubclass(hWnd, Shell_TrayWndSubclassProc, Shell_TrayWndSubclassProc);
|
||||
}
|
||||
@ -1011,7 +1011,7 @@ INT64 ClockButtonSubclassProc(
|
||||
DWORD_PTR dwRefData
|
||||
)
|
||||
{
|
||||
if (uMsg == WM_DESTROY)
|
||||
if (uMsg == WM_NCDESTROY)
|
||||
{
|
||||
RemoveWindowSubclass(hWnd, ClockButtonSubclassProc, ClockButtonSubclassProc);
|
||||
}
|
||||
@ -2345,7 +2345,7 @@ INT64 ShowDesktopSubclassProc(
|
||||
DWORD_PTR dwRefData
|
||||
)
|
||||
{
|
||||
if (uMsg == WM_DESTROY)
|
||||
if (uMsg == WM_NCDESTROY)
|
||||
{
|
||||
RemoveWindowSubclass(hWnd, ShowDesktopSubclassProc, ShowDesktopSubclassProc);
|
||||
}
|
||||
|
2
libs/sws
2
libs/sws
@ -1 +1 @@
|
||||
Subproject commit b16f8a639634a0239fdc624e272b278a0be616d2
|
||||
Subproject commit 99bb6a99adb45d905812cb03afccdbaf19fdfe95
|
Loading…
Reference in New Issue
Block a user