Commit 27d8b743 authored by Michael Stefaniuc's avatar Michael Stefaniuc Committed by Alexandre Julliard

mshtml: Remove two superfluous casts.

parent f142ad92
......@@ -94,7 +94,7 @@ static LRESULT WINAPI nsembed_proc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lP
This = *(NSContainer**)lParam;
SetPropW(hwnd, wszTHIS, This);
}else {
This = (NSContainer*)GetPropW(hwnd, wszTHIS);
This = GetPropW(hwnd, wszTHIS);
}
switch(msg) {
......
......@@ -189,7 +189,7 @@ static LRESULT WINAPI serverwnd_proc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM
This = *(HTMLDocument**)lParam;
SetPropW(hwnd, wszTHIS, This);
}else {
This = (HTMLDocument*)GetPropW(hwnd, wszTHIS);
This = GetPropW(hwnd, wszTHIS);
}
switch(msg) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment