Use TextRun API instead of no-longer public variables

This commit is contained in:
kipp%netscape.com 1998-10-20 00:21:54 +00:00
parent 6f95672654
commit 767b366eda
6 changed files with 6 additions and 6 deletions

View File

@ -1011,7 +1011,7 @@ ListTextRuns(FILE* out, PRInt32 aIndent, nsTextRun* aRuns)
{
while (nsnull != aRuns) {
aRuns->List(out, aIndent);
aRuns = aRuns->mNext;
aRuns = aRuns->GetNext();
}
}

View File

@ -1011,7 +1011,7 @@ ListTextRuns(FILE* out, PRInt32 aIndent, nsTextRun* aRuns)
{
while (nsnull != aRuns) {
aRuns->List(out, aIndent);
aRuns = aRuns->mNext;
aRuns = aRuns->GetNext();
}
}

View File

@ -1011,7 +1011,7 @@ ListTextRuns(FILE* out, PRInt32 aIndent, nsTextRun* aRuns)
{
while (nsnull != aRuns) {
aRuns->List(out, aIndent);
aRuns = aRuns->mNext;
aRuns = aRuns->GetNext();
}
}

View File

@ -1011,7 +1011,7 @@ ListTextRuns(FILE* out, PRInt32 aIndent, nsTextRun* aRuns)
{
while (nsnull != aRuns) {
aRuns->List(out, aIndent);
aRuns = aRuns->mNext;
aRuns = aRuns->GetNext();
}
}

View File

@ -1011,7 +1011,7 @@ ListTextRuns(FILE* out, PRInt32 aIndent, nsTextRun* aRuns)
{
while (nsnull != aRuns) {
aRuns->List(out, aIndent);
aRuns = aRuns->mNext;
aRuns = aRuns->GetNext();
}
}

View File

@ -1011,7 +1011,7 @@ ListTextRuns(FILE* out, PRInt32 aIndent, nsTextRun* aRuns)
{
while (nsnull != aRuns) {
aRuns->List(out, aIndent);
aRuns = aRuns->mNext;
aRuns = aRuns->GetNext();
}
}