Changed some nsIFrame member functions to use ** instead of *& for OUT

paremeters


git-svn-id: svn://10.0.0.236/trunk@20199 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
troy%netscape.com
1999-02-10 00:42:56 +00:00
parent 4ed9a862df
commit 8934624982
82 changed files with 333 additions and 259 deletions

View File

@@ -366,7 +366,7 @@ void ReflowTemp(nsIPresContext& aPresContext, nsHTMLButtonControlFrame* aFrame,
NS_RELEASE(cmd);
#else
nsIContent* content;
aFrame->GetContent(content);
aFrame->GetContent(&content);
if (nsnull != content) {
nsIDocument* document;
@@ -714,7 +714,12 @@ nsHTMLButtonControlFrame::GetFont(nsIPresContext* aPresContext,
NS_IMETHODIMP
nsHTMLButtonControlFrame::GetFormContent(nsIContent*& aContent) const
{
return GetContent(aContent);
nsIContent* content;
nsresult rv;
rv = GetContent(&content);
aContent = content;
return rv;
}
nscoord