Fix cast in Windows TaskBar
This commit is contained in:
parent
7e386c0bf9
commit
702f095efd
|
@ -417,7 +417,7 @@ ArchTaskBarWindows::staticWndProc(HWND hwnd, UINT msg,
|
||||||
createInfo = reinterpret_cast<CREATESTRUCT*>(lParam);
|
createInfo = reinterpret_cast<CREATESTRUCT*>(lParam);
|
||||||
self = static_cast<ArchTaskBarWindows*>(
|
self = static_cast<ArchTaskBarWindows*>(
|
||||||
createInfo->lpCreateParams);
|
createInfo->lpCreateParams);
|
||||||
SetWindowLongPtr(hwnd, 0, self);
|
SetWindowLongPtr(hwnd, 0, reinterpret_cast<LONG_PTR>(createInfo->lpCreateParams));
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
// get the extra window data and forward the call
|
// get the extra window data and forward the call
|
||||||
|
|
Loading…
Reference in New Issue