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

git-svn-id: svn://10.0.0.236/trunk@106598 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
hyatt%netscape.com 2001-10-30 00:01:39 +00:00
parent f714992ade
commit cd68d72f41
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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