Bug 1116753 - Remove the nsIPresShell* param from remaining frame ctors that still have it. r=roc
This commit is contained in:
@@ -54,7 +54,7 @@ using namespace mozilla;
|
||||
nsIFrame*
|
||||
NS_NewTextControlFrame(nsIPresShell* aPresShell, nsStyleContext* aContext)
|
||||
{
|
||||
return new (aPresShell) nsTextControlFrame(aPresShell, aContext);
|
||||
return new (aPresShell) nsTextControlFrame(aContext);
|
||||
}
|
||||
|
||||
NS_IMPL_FRAMEARENA_HELPERS(nsTextControlFrame)
|
||||
@@ -99,7 +99,7 @@ private:
|
||||
};
|
||||
#endif
|
||||
|
||||
nsTextControlFrame::nsTextControlFrame(nsIPresShell* aShell, nsStyleContext* aContext)
|
||||
nsTextControlFrame::nsTextControlFrame(nsStyleContext* aContext)
|
||||
: nsContainerFrame(aContext)
|
||||
, mEditorHasBeenInitialized(false)
|
||||
, mIsProcessing(false)
|
||||
|
||||
Reference in New Issue
Block a user