Commit 1913d265 authored by Jacek Caban's avatar Jacek Caban Committed by Alexandre Julliard

mshtml: Use unsigned types for bitfields.

parent 78c77ae3
......@@ -958,8 +958,8 @@ struct HTMLDocumentNode {
nsIDOMDocument *dom_document;
nsIDOMHTMLDocument *html_document;
BOOL content_ready : 1;
BOOL unload_sent : 1;
unsigned int content_ready : 1;
unsigned int unload_sent : 1;
IHTMLDOMImplementation *dom_implementation;
IHTMLNamespaceCollection *namespaces;
......
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