Simplifying this a bit to try to fix bustage.

git-svn-id: svn://10.0.0.236/trunk@169418 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
bryner%brianryner.com 2005-02-18 19:58:13 +00:00
parent 445447b918
commit 3f12a0209f

View File

@ -1949,7 +1949,10 @@ nsCSSStyleSheet::GetStyleRuleAt(PRInt32 aIndex, nsICSSRule*& aRule) const
nsNameSpaceMap*
nsCSSStyleSheet::GetNameSpaceMap() const
{
return mInner ? mInner->mNameSpaceMap : nsnull;
if (mInner)
return mInner->mNameSpaceMap;
return nsnull;
}
NS_IMETHODIMP