Bug 55100. Re-order vtable so that nsFrame::Destroy will find the size in the right spot. This is a band-aid fix. r=buster, sr=hyatt

git-svn-id: svn://10.0.0.236/trunk@80744 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
waterson%netscape.com 2000-10-09 21:10:05 +00:00
parent 3c75a71e7a
commit b2130a8875
2 changed files with 6 additions and 6 deletions

View File

@ -39,9 +39,9 @@ class nsGfxScrollFrameInner;
* Scroll frames don't support incremental changes, i.e. you can't replace
* or remove the scrolled frame
*/
class nsGfxScrollFrame : public nsIAnonymousContentCreator,
public nsBoxFrame,
public nsIScrollableFrame {
class nsGfxScrollFrame : public nsBoxFrame,
public nsIScrollableFrame,
public nsIAnonymousContentCreator {
public:
friend nsresult NS_NewGfxScrollFrame(nsIPresShell* aPresShell, nsIFrame** aNewFrame,
nsIDocument* aDocument, PRBool aIsRoot);

View File

@ -39,9 +39,9 @@ class nsGfxScrollFrameInner;
* Scroll frames don't support incremental changes, i.e. you can't replace
* or remove the scrolled frame
*/
class nsGfxScrollFrame : public nsIAnonymousContentCreator,
public nsBoxFrame,
public nsIScrollableFrame {
class nsGfxScrollFrame : public nsBoxFrame,
public nsIScrollableFrame,
public nsIAnonymousContentCreator {
public:
friend nsresult NS_NewGfxScrollFrame(nsIPresShell* aPresShell, nsIFrame** aNewFrame,
nsIDocument* aDocument, PRBool aIsRoot);