SetParent in nsIFrame should not be inlined. r=evaughan, sr=hewitt

This commit is contained in:
hyatt%netscape.com 2001-10-30 00:01:39 +00:00
Родитель 06fcff3478
Коммит a802d9dfe8
2 изменённых файлов: 2 добавлений и 2 удалений

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

@ -591,7 +591,7 @@ public:
* Accessor functions for geometric parent
*/
nsresult GetParent(nsIFrame** aParent) const { *aParent = mParent; return NS_OK; }
nsresult SetParent(const nsIFrame* aParent) { mParent = (nsIFrame*)aParent; return NS_OK; }
NS_IMETHOD SetParent(const nsIFrame* aParent) { mParent = (nsIFrame*)aParent; return NS_OK; }
/**
* Bounding rect of the frame. The values are in twips, and the origin is

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

@ -591,7 +591,7 @@ public:
* Accessor functions for geometric parent
*/
nsresult GetParent(nsIFrame** aParent) const { *aParent = mParent; return NS_OK; }
nsresult SetParent(const nsIFrame* aParent) { mParent = (nsIFrame*)aParent; return NS_OK; }
NS_IMETHOD SetParent(const nsIFrame* aParent) { mParent = (nsIFrame*)aParent; return NS_OK; }
/**
* Bounding rect of the frame. The values are in twips, and the origin is