Fix non-debug build spankage, approved sar, jj.

This commit is contained in:
sfraser%netscape.com 1999-01-22 21:22:22 +00:00
Родитель e82c5d361c
Коммит abee877be8
1 изменённых файлов: 5 добавлений и 1 удалений

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

@ -83,7 +83,7 @@ class TimerImpl : public nsITimer
eDeletedTimerSignature = 'oops'
};
Boolean IsGoodTimer() { return (mSignature == eGoodTimerSignature); }
Boolean IsGoodTimer() const { return (mSignature == eGoodTimerSignature); }
#endif
private:
@ -140,7 +140,9 @@ TimerImpl::TimerImpl()
, mClosure(nsnull)
, mDelay(0)
, mFireTime(0)
#if DEBUG
, mSignature(eGoodTimerSignature)
#endif
{
NS_INIT_REFCNT();
}
@ -151,7 +153,9 @@ TimerImpl::~TimerImpl()
{
Cancel();
NS_IF_RELEASE(mCallbackObject);
#if DEBUG
mSignature = eDeletedTimerSignature;
#endif
}
//----------------------------------------------------------------------------------------