Taking out the damn nsCOMPtr for nsThreadPool for Mac!

This commit is contained in:
warren%netscape.com 1999-09-20 22:35:06 +00:00
Родитель 2bb4389148
Коммит 0f38c8859b
2 изменённых файлов: 3 добавлений и 1 удалений

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

@ -523,10 +523,12 @@ nsThreadPoolRunnable::nsThreadPoolRunnable(nsThreadPool* pool)
{
NS_INIT_REFCNT();
mPool = pool;
NS_ADDREF(pool);
}
nsThreadPoolRunnable::~nsThreadPoolRunnable()
{
NS_RELEASE(mPool);
}
NS_IMPL_ISUPPORTS1(nsThreadPoolRunnable, nsIRunnable)

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

@ -108,7 +108,7 @@ public:
virtual ~nsThreadPoolRunnable();
protected:
nsCOMPtr<nsThreadPool> mPool;
nsThreadPool* mPool;
};