if an alpha pixmap is there destroy it and not only in the case where we have alpha bits

This commit is contained in:
pavlov%netscape.com 1999-12-02 23:56:12 +00:00
Родитель b1cae38a41
Коммит b7a076566e
1 изменённых файлов: 4 добавлений и 3 удалений

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

@ -78,9 +78,10 @@ nsImageGTK::~nsImageGTK()
if (nsnull != mAlphaBits) {
delete[] (PRUint8*)mAlphaBits;
mAlphaBits = nsnull;
if (nsnull != mAlphaPixmap) {
gdk_pixmap_unref(mAlphaPixmap);
}
}
if (mAlphaPixmap) {
gdk_pixmap_unref(mAlphaPixmap);
}
if (mImagePixmap) {