Added SetProperty/GetProperty methods to nsIFormControlFrame. Added stub

implementations for all classes that derive from nsIFormControlFrame
This commit is contained in:
kmcclusk@netscape.com
1999-01-25 22:16:27 +00:00
parent e9cb1c7c9f
commit 29dd95ad3e
32 changed files with 302 additions and 0 deletions

View File

@@ -352,3 +352,13 @@ nsFileControlFrame::GetHorizontalInsidePadding(nsIPresContext& aPresContext,
{
return 0;
}
NS_IMETHODIMP nsFileControlFrame::SetProperty(nsIAtom* aName, const nsString& aValue)
{
return NS_OK;
}
NS_IMETHODIMP nsFileControlFrame::GetProperty(nsIAtom* aName, nsString& aValue)
{
return NS_OK;
}