make destructors virtual

git-svn-id: svn://10.0.0.236/trunk@31350 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
sspitzer%netscape.com 1999-05-13 00:51:26 +00:00
parent 89ee936592
commit bdc76059f4
2 changed files with 2 additions and 2 deletions

View File

@ -47,7 +47,7 @@ public:
il_container *SetContainer(il_container *ic) {mContainer=ic; return ic;};
GIFCallbk(il_container *aContainer){ NS_INIT_ISUPPORTS(); mContainer=aContainer; };
~GIFCallbk() { }; // XXX Pam needs to fix this
virtual ~GIFCallbk() { }; // XXX Pam needs to fix this
private:
il_container* mContainer;

View File

@ -65,7 +65,7 @@ public:
il_container *SetContainer(il_container *ic) {mContainer=ic; return ic;};
ImgDecoder(il_container *aContainer){ NS_INIT_ISUPPORTS(); mContainer=aContainer;};
~ImgDecoder(); // XXX Pam needs to fix this
virtual ~ImgDecoder(); // XXX Pam needs to fix this
private:
il_container* mContainer;