Convert users of nsAReadable[C]String and nsAWritable[C]String typedefs to [const] nsA[C]String. b=131899 r=scc sr=jag a=asa

This commit is contained in:
dbaron@fas.harvard.edu
2002-03-23 22:26:36 +00:00
parent c32e8a18a4
commit 49ccb8e11d
74 changed files with 191 additions and 191 deletions

View File

@@ -898,13 +898,13 @@ nsFormControlFrame::SetCurrentCheckState(PRBool aState)
}
NS_IMETHODIMP
nsFormControlFrame::SetProperty(nsIPresContext* aPresContext, nsIAtom* aName, const nsAReadableString& aValue)
nsFormControlFrame::SetProperty(nsIPresContext* aPresContext, nsIAtom* aName, const nsAString& aValue)
{
return NS_OK;
}
NS_IMETHODIMP
nsFormControlFrame::GetProperty(nsIAtom* aName, nsAWritableString& aValue)
nsFormControlFrame::GetProperty(nsIAtom* aName, nsAString& aValue)
{
aValue.Truncate();
return NS_OK;