Fix for bug 799465 (Add complete support for non-nsISupports objects in new DOM bindings) - allow non-nsISupports object to be parents, take care of review comment. r=bz.

--HG--
extra : rebase_source : 0e0373a0dfb0d3a3a3846c87529bde31f072866f
This commit is contained in:
Peter Van der Beken 2012-10-12 14:52:32 +02:00
Родитель f31f201405
Коммит 9adf23f0b3
1 изменённых файлов: 2 добавлений и 2 удалений

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

@ -635,8 +635,8 @@ GetWrapperCache(const ParentObject& aParentObject)
}
template<class T>
inline T
GetParentPointer(T aObject)
inline T*
GetParentPointer(T* aObject)
{
return aObject;
}