fix problem on AIX-xlC compiler with protected structs.

This commit is contained in:
jdunn%netscape.com 1999-04-01 20:13:59 +00:00
Родитель 21744e4f8d
Коммит f18151a29c
1 изменённых файлов: 6 добавлений и 0 удалений

Просмотреть файл

@ -36,6 +36,9 @@ public:
PRBool TestGetBandData();
protected:
#ifdef AIX
public:
#endif // AIX
struct BandInfo {
nscoord yOffset;
nscoord height;
@ -47,6 +50,9 @@ protected:
PRIntn numBands;
BandInfo bands[25];
};
#ifdef AIX
protected:
#endif // AIX
void GetBandsInfo(BandsInfo&);
};