Added a refcount to the nsDeviceContext. sr=attinasi r=kmcclusk

This commit is contained in:
dcone%netscape.com 2001-02-14 02:57:07 +00:00
Родитель 9bdb616f80
Коммит ccfa389edd
1 изменённых файлов: 5 добавлений и 0 удалений

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

@ -677,6 +677,11 @@ NS_IMETHODIMP nsDeviceContextMac::GetDeviceContextFor(nsIDeviceContextSpec *aDev
nsDeviceContextMac *macDC;
aContext = new nsDeviceContextMac();
if(nsnull == aContext){
return NS_ERROR_OUT_OF_MEMORY;
}
NS_ADDREF(aContext);
macDC = (nsDeviceContextMac*)aContext;
macDC->mSpec = aDevice;
NS_ADDREF(aDevice);