removed warnings; r=none
git-svn-id: svn://10.0.0.236/trunk@64107 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
@@ -1010,7 +1010,9 @@ PRBool nsHTMLContentSinkStream::HasLongLines(const nsString& text)
|
||||
{
|
||||
const PRInt32 longLineLen = 128;
|
||||
nsString str = text;
|
||||
for (PRInt32 start = 0; start < text.Length(); )
|
||||
PRUint32 start=0;
|
||||
PRUint32 theLen=text.Length();
|
||||
for (start = 0; start < theLen; )
|
||||
{
|
||||
PRInt32 eol = text.FindChar('\n', PR_FALSE, start);
|
||||
if (eol < 0) eol = text.Length();
|
||||
|
||||
Reference in New Issue
Block a user