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

git-svn-id: svn://10.0.0.236/trunk@139547 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
dbaron%dbaron.org 2003-03-16 01:12:32 +00:00
parent b64077c53b
commit 2b52a19bb4

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);