BandRect needs to be public to be visible outside the class definition (HPUX bustage)

This commit is contained in:
alecf%netscape.com 1999-02-26 17:36:00 +00:00
parent d644fabe47
commit 2a71e76f16
2 changed files with 4 additions and 0 deletions

View File

@ -65,6 +65,7 @@ protected:
FrameInfo(nsIFrame* aFrame, const nsRect& aRect);
};
public:
// Doubly linked list of band rects
struct BandRect : PRCListStr {
nscoord left, top;
@ -128,6 +129,7 @@ protected:
void Clear();
};
protected:
nsIFrame* const mFrame; // frame associated with the space manager
nscoord mX, mY; // translation from local to global coordinate space
BandList mBandList; // header for circular linked list of band rects

View File

@ -65,6 +65,7 @@ protected:
FrameInfo(nsIFrame* aFrame, const nsRect& aRect);
};
public:
// Doubly linked list of band rects
struct BandRect : PRCListStr {
nscoord left, top;
@ -128,6 +129,7 @@ protected:
void Clear();
};
protected:
nsIFrame* const mFrame; // frame associated with the space manager
nscoord mX, mY; // translation from local to global coordinate space
BandList mBandList; // header for circular linked list of band rects