Renamed DeleteFrame() to Destroy()

git-svn-id: svn://10.0.0.236/trunk@40585 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
troy%netscape.com
1999-07-22 02:24:52 +00:00
parent 0562346fa7
commit 947927e816
72 changed files with 177 additions and 177 deletions

View File

@@ -42,13 +42,13 @@ nsBulletFrame::~nsBulletFrame()
}
NS_IMETHODIMP
nsBulletFrame::DeleteFrame(nsIPresContext& aPresContext)
nsBulletFrame::Destroy(nsIPresContext& aPresContext)
{
// Stop image loading first
mImageLoader.StopAllLoadImages(&aPresContext);
// Let base class do the rest
return nsFrame::DeleteFrame(aPresContext);
return nsFrame::Destroy(aPresContext);
}
NS_IMETHODIMP