Fix operator precedence error in previous patch (which I reviewed, eek!). b=197277

This commit is contained in:
dbaron%dbaron.org 2003-03-16 01:12:32 +00:00
parent 0a7d66cd04
commit 156161466a

View File

@ -459,7 +459,7 @@ nsXMLContentSink::DidBuildModel(PRInt32 aQualityLevel)
if (docShell) {
PRUint32 documentLoadType = 0;
docShell->GetLoadType(&documentLoadType);
ScrollToRef(documentLoadType & nsIDocShell::LOAD_CMD_HISTORY == 0);
ScrollToRef(!(documentLoadType & nsIDocShell::LOAD_CMD_HISTORY));
}
#else
ScrollToRef(PR_TRUE);