Fixed places where SetProperty and Reset were missing the nsIPresContext argument.

This fixed 6 warnings and cases where reset and set property where not working properly for
all form elements. r = rods@netscape.com.
This commit is contained in:
kmcclusk@netscape.com
1999-11-03 00:01:13 +00:00
parent d6a09b16aa
commit 62a8c51ea2
14 changed files with 19 additions and 19 deletions

View File

@@ -162,7 +162,7 @@ void
nsFileControlFrame::Reset(nsIPresContext* aPresContext)
{
if (mTextFrame) {
mTextFrame->Reset();
mTextFrame->Reset(aPresContext);
}
}