Bug 811449 part 4. Move the data members of Element to the end of the class. r=peterv

This commit is contained in:
Boris Zbarsky 2012-11-14 14:10:07 -08:00
parent 19333a472b
commit bf762c76bb

View File

@ -402,9 +402,6 @@ private:
RemoveStatesSilently(aStates);
NotifyStateChange(aStates);
}
nsEventStates mState;
public:
virtual void UpdateEditableState(bool aNotify);
@ -1081,6 +1078,9 @@ private:
nsRect GetClientAreaRect();
nsIScrollableFrame* GetScrollFrame(nsIFrame **aStyledFrame = nullptr);
// Data members
nsEventStates mState;
};
NS_DEFINE_STATIC_IID_ACCESSOR(Element, NS_ELEMENT_IID)