The fix for bug 195727 lost the const qualifier. Putting it back. r=timeless, sr=sspitzer

This commit is contained in:
dmose%mozilla.org 2003-03-14 04:20:40 +00:00
parent 6e5cc519a5
commit 432ba7d46f

View File

@ -53,7 +53,7 @@ const PRFloat64 growthRate = 1.2;
// Bug 183111, editor now replaces multiple spaces with leading
// 0xA0's and a single ending space, so need to treat 0xA0's as spaces.
// 0xA0 is the Latin1/Unicode character for "non-breaking space (nbsp)"
static inline PRBool IsSpace(PRUnichar aChar)
static inline PRBool IsSpace(const PRUnichar aChar)
{
return (nsCRT::IsAsciiSpace(aChar) || aChar == 0xA0);
}