b=425593, print failure with 'some printing functionality not implemented' message (it\'s NS_OK, really!); r=stuart

This commit is contained in:
vladimir@pobox.com 2008-03-28 00:13:37 -07:00
Родитель 06b83429b6
Коммит 613d66abe2
1 изменённых файлов: 5 добавлений и 5 удалений

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

@ -319,29 +319,29 @@ gfxASurface::CheckSurfaceSize(const gfxIntSize& sz, PRInt32 limit)
nsresult
gfxASurface::BeginPrinting(const nsAString& aTitle, const nsAString& aPrintToFileName)
{
return NS_ERROR_NOT_IMPLEMENTED;
return NS_OK;
}
nsresult
gfxASurface::EndPrinting()
{
return NS_ERROR_NOT_IMPLEMENTED;
return NS_OK;
}
nsresult
gfxASurface::AbortPrinting()
{
return NS_ERROR_NOT_IMPLEMENTED;
return NS_OK;
}
nsresult
gfxASurface::BeginPage()
{
return NS_ERROR_NOT_IMPLEMENTED;
return NS_OK;
}
nsresult
gfxASurface::EndPage()
{
return NS_ERROR_NOT_IMPLEMENTED;
return NS_OK;
}