зеркало из https://github.com/mozilla/pjs.git
Fixed problem that caused Mac build to break
This commit is contained in:
Родитель
4b24ddd7d0
Коммит
0e8c33d9f8
|
@ -144,7 +144,8 @@ RootFrame::Reflow(nsIPresContext& aPresContext,
|
|||
deletedFrame->GetNextSibling(mFirstChild);
|
||||
} else {
|
||||
nsIFrame* prevSibling = nsnull;
|
||||
for (nsIFrame* f = mFirstChild; nsnull != f; f->GetNextSibling(f)) {
|
||||
nsIFrame* f;
|
||||
for (f = mFirstChild; nsnull != f; f->GetNextSibling(f)) {
|
||||
if (f == deletedFrame) {
|
||||
break;
|
||||
}
|
||||
|
|
|
@ -144,7 +144,8 @@ RootFrame::Reflow(nsIPresContext& aPresContext,
|
|||
deletedFrame->GetNextSibling(mFirstChild);
|
||||
} else {
|
||||
nsIFrame* prevSibling = nsnull;
|
||||
for (nsIFrame* f = mFirstChild; nsnull != f; f->GetNextSibling(f)) {
|
||||
nsIFrame* f;
|
||||
for (f = mFirstChild; nsnull != f; f->GetNextSibling(f)) {
|
||||
if (f == deletedFrame) {
|
||||
break;
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче