mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
Fix obvious mistake in bug 470911 as well
This commit is contained in:
parent
dc7ce41957
commit
4ef4ddca28
@ -157,12 +157,12 @@ private:
|
||||
nsRefPtr<nsSVGElement> mSVGElement;
|
||||
|
||||
NS_IMETHOD GetAlign(PRUint16* aAlign)
|
||||
{ *aAlign = mVal->GetBaseValue().GetAlign(); return NS_OK; }
|
||||
{ *aAlign = mVal->GetAnimValue().GetAlign(); return NS_OK; }
|
||||
NS_IMETHOD SetAlign(PRUint16 aAlign)
|
||||
{ return NS_ERROR_DOM_NO_MODIFICATION_ALLOWED_ERR; }
|
||||
|
||||
NS_IMETHOD GetMeetOrSlice(PRUint16* aMeetOrSlice)
|
||||
{ *aMeetOrSlice = mVal->GetBaseValue().GetMeetOrSlice(); return NS_OK; }
|
||||
{ *aMeetOrSlice = mVal->GetAnimValue().GetMeetOrSlice(); return NS_OK; }
|
||||
NS_IMETHOD SetMeetOrSlice(PRUint16 aValue)
|
||||
{ return NS_ERROR_DOM_NO_MODIFICATION_ALLOWED_ERR; }
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user