Bug 610821 part.5 Use nsRefPtr rather than nsCOMPtr for concrete class r=neil, a=johnath

This commit is contained in:
Masayuki Nakano 2011-01-18 12:07:29 +09:00
Родитель ff93946c65
Коммит 6b3334cc53
1 изменённых файлов: 2 добавлений и 1 удалений

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

@ -50,6 +50,7 @@
* nsWindow - Native window management and event handling.
*/
#include "nsAutoPtr.h"
#include "nsBaseWidget.h"
#include "nsdefs.h"
#include "nsIdleService.h"
@ -659,7 +660,7 @@ protected:
}
PRBool mCancel;
nsCOMPtr<nsWindow> mWindow;
nsRefPtr<nsWindow> mWindow;
const MSG &mMsg;
};