Bug 240274 - remove PopState() argument. r=blizzard, sr=bryner

This commit is contained in:
tor%cs.brown.edu 2004-04-18 13:55:11 +00:00
Родитель 6635d16530
Коммит 6fa1005b53
5 изменённых файлов: 5 добавлений и 10 удалений

Просмотреть файл

@ -3240,7 +3240,7 @@ nsCSSRendering::PaintBackgroundWithSC(nsIPresContext* aPresContext,
#if (!defined(XP_UNIX) && !defined(XP_BEOS)) || defined(XP_MACOSX)
// Restore clipping
aRenderingContext.PopState(clipState);
aRenderingContext.PopState();
#endif
}

Просмотреть файл

@ -3240,7 +3240,7 @@ nsCSSRendering::PaintBackgroundWithSC(nsIPresContext* aPresContext,
#if (!defined(XP_UNIX) && !defined(XP_BEOS)) || defined(XP_MACOSX)
// Restore clipping
aRenderingContext.PopState(clipState);
aRenderingContext.PopState();
#endif
}

Просмотреть файл

@ -228,8 +228,7 @@ nsSVGLibartBitmapGdk::UnlockRenderingContext()
mRenderingContext->GetDrawingSurface((nsDrawingSurface*)&surface);
NS_ASSERTION(surface, "null surface");
PRBool clipEmpty;
mRenderingContext->PopState(clipEmpty);
mRenderingContext->PopState();
mRenderingContext->SelectOffScreenDrawingSurface(mTempSurface);
mTempSurface = nsnull;

Просмотреть файл

@ -1476,10 +1476,7 @@ void nsChildView::EndDraw()
mDrawing = PR_FALSE;
if (mTempRenderingContextMadeHere)
{
PRBool clipEmpty;
mTempRenderingContext->PopState(clipEmpty);
}
mTempRenderingContext->PopState();
NS_RELEASE(mTempRenderingContext);
}

Просмотреть файл

@ -1184,8 +1184,7 @@ void nsWindow::EndDraw()
return;
mDrawing = PR_FALSE;
PRBool clipEmpty;
mTempRenderingContext->PopState(clipEmpty);
mTempRenderingContext->PopState();
NS_RELEASE(mTempRenderingContext);