mirror of
https://github.com/reactos/wine.git
synced 2024-11-25 12:49:45 +00:00
mshtml: Improve ConfirmEx hack.
This commit is contained in:
parent
be6d891f0d
commit
a611b20c26
@ -122,14 +122,14 @@ static nsresult NSAPI nsPromptService_ConfirmEx(nsIPromptService *iface,
|
||||
* This is really very very ugly hack!!!
|
||||
*/
|
||||
|
||||
if(!memcmp(aButton0Title, wszContinue, sizeof(wszContinue)))
|
||||
if(aButton0Title && !memcmp(aButton0Title, wszContinue, sizeof(wszContinue)))
|
||||
*_retval = 0;
|
||||
else if(!memcmp(aButton1Title, wszContinue, sizeof(wszContinue)))
|
||||
else if(aButton1Title && !memcmp(aButton1Title, wszContinue, sizeof(wszContinue)))
|
||||
*_retval = 1;
|
||||
else if(!memcmp(aButton2Title, wszContinue, sizeof(wszContinue)))
|
||||
else if(aButton2Title && !memcmp(aButton2Title, wszContinue, sizeof(wszContinue)))
|
||||
*_retval = 2;
|
||||
else
|
||||
*_retval = 0;
|
||||
/* else
|
||||
* let's hope that _retval is set to the default value */
|
||||
|
||||
return NS_OK;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user