mirror of
https://github.com/reactos/reactos.git
synced 2025-07-31 05:32:21 +00:00
[SHELL32][REGEDIT][MSCONFIG_NEW] Correctly check for presence of list view sort header.
This commit is contained in:
parent
e3d000c30e
commit
ba8f75557a
3 changed files with 3 additions and 3 deletions
|
@ -49,7 +49,7 @@ ListView_SortEx(HWND hListView,
|
|||
BOOL bSortAsc;
|
||||
Sort sort;
|
||||
|
||||
if ((GetWindowLongPtr(hListView, GWL_STYLE) & ~LVS_NOSORTHEADER) == 0)
|
||||
if (GetWindowLongPtr(hListView, GWL_STYLE) & LVS_NOSORTHEADER)
|
||||
return TRUE;
|
||||
|
||||
hHeader = ListView_GetHeader(hListView);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue