mshtml: Remove two superfluous casts.

This commit is contained in:
Michael Stefaniuc 2008-12-05 07:46:08 +01:00 committed by Alexandre Julliard
parent f142ad923a
commit 27d8b7436f
2 changed files with 2 additions and 2 deletions

View File

@ -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) {

View File

@ -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) {