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.


git-svn-id: svn://10.0.0.236/trunk@52619 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
kmcclusk%netscape.com
1999-11-03 00:01:13 +00:00
parent 913fe3b85c
commit a09d34ccd1
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);
}
}