fixing AIX bustage. The variable mNotice can't be const. It was

fixed once (rev 1.7) but was mistakenly made const again.
r=Roland.Mainz@informatik.med.uni-giessen.de
# 125341
This commit is contained in:
jdunn%netscape.com 2002-02-15 13:19:15 +00:00
Родитель 95ccf5f5c7
Коммит 5bd8d8fff4
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -201,7 +201,7 @@ struct fontInformation
double mFontBBox_urx;
double mFontBBox_ury;
const char *mVersion;
const char *mNotice;
char *mNotice; // DO NOT MAKE "const" (125341)
const char *mEncodingScheme;
PRInt32 mMappingScheme;
PRInt32 mEscChar;