This commit is contained in:
sspitzer%netscape.com 1999-08-05 19:47:10 +00:00
Родитель 04ebe39ab8
Коммит cbcb2ce098
4 изменённых файлов: 6 добавлений и 6 удалений

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

@ -14,7 +14,7 @@ NS_DECL_ISUPPORTS
nsPrincipalArray(void);
nsPrincipalArray(PRUint32 count);
~nsPrincipalArray();
virtual ~nsPrincipalArray();
NS_IMETHOD
ComparePrincipalArray(nsIPrincipalArray * other, PRInt16 * comparisonType);

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

@ -14,7 +14,7 @@ class nsSupportsWeakReference : public nsISupportsWeakReference
// nothing else to do here
}
inline ~nsSupportsWeakReference();
inline virtual ~nsSupportsWeakReference();
NS_IMETHOD GetWeakReference( nsIWeakReference** );
@ -54,7 +54,7 @@ class nsWeakReference : public nsIWeakReference
// nothing else to do here
}
~nsWeakReference()
virtual ~nsWeakReference()
// ...I will only be destroyed by calling |delete| myself.
{
if ( mReferent )

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

@ -14,7 +14,7 @@ class nsSupportsWeakReference : public nsISupportsWeakReference
// nothing else to do here
}
inline ~nsSupportsWeakReference();
inline virtual ~nsSupportsWeakReference();
NS_IMETHOD GetWeakReference( nsIWeakReference** );
@ -54,7 +54,7 @@ class nsWeakReference : public nsIWeakReference
// nothing else to do here
}
~nsWeakReference()
virtual ~nsWeakReference()
// ...I will only be destroyed by calling |delete| myself.
{
if ( mReferent )

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

@ -43,7 +43,7 @@ class nsStreamXferOp : public nsIStreamTransferOperation,
public:
// ctor/dtor
nsStreamXferOp( const nsString &source, const nsString &target );
~nsStreamXferOp();
virtual ~nsStreamXferOp();
// Implementation.
NS_IMETHOD OpenDialog( nsIDOMWindow *parent );