mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-01-08 12:22:34 +00:00
Use TextRun API instead of no-longer public variables
This commit is contained in:
parent
6f95672654
commit
767b366eda
@ -1011,7 +1011,7 @@ ListTextRuns(FILE* out, PRInt32 aIndent, nsTextRun* aRuns)
|
||||
{
|
||||
while (nsnull != aRuns) {
|
||||
aRuns->List(out, aIndent);
|
||||
aRuns = aRuns->mNext;
|
||||
aRuns = aRuns->GetNext();
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1011,7 +1011,7 @@ ListTextRuns(FILE* out, PRInt32 aIndent, nsTextRun* aRuns)
|
||||
{
|
||||
while (nsnull != aRuns) {
|
||||
aRuns->List(out, aIndent);
|
||||
aRuns = aRuns->mNext;
|
||||
aRuns = aRuns->GetNext();
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1011,7 +1011,7 @@ ListTextRuns(FILE* out, PRInt32 aIndent, nsTextRun* aRuns)
|
||||
{
|
||||
while (nsnull != aRuns) {
|
||||
aRuns->List(out, aIndent);
|
||||
aRuns = aRuns->mNext;
|
||||
aRuns = aRuns->GetNext();
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1011,7 +1011,7 @@ ListTextRuns(FILE* out, PRInt32 aIndent, nsTextRun* aRuns)
|
||||
{
|
||||
while (nsnull != aRuns) {
|
||||
aRuns->List(out, aIndent);
|
||||
aRuns = aRuns->mNext;
|
||||
aRuns = aRuns->GetNext();
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1011,7 +1011,7 @@ ListTextRuns(FILE* out, PRInt32 aIndent, nsTextRun* aRuns)
|
||||
{
|
||||
while (nsnull != aRuns) {
|
||||
aRuns->List(out, aIndent);
|
||||
aRuns = aRuns->mNext;
|
||||
aRuns = aRuns->GetNext();
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -1011,7 +1011,7 @@ ListTextRuns(FILE* out, PRInt32 aIndent, nsTextRun* aRuns)
|
||||
{
|
||||
while (nsnull != aRuns) {
|
||||
aRuns->List(out, aIndent);
|
||||
aRuns = aRuns->mNext;
|
||||
aRuns = aRuns->GetNext();
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user