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

git-svn-id: svn://10.0.0.236/trunk@117341 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
dbaron%fas.harvard.edu
2002-03-23 21:42:00 +00:00
parent 58badaae12
commit 8a6d46ad56
18 changed files with 54 additions and 54 deletions

View File

@@ -1062,7 +1062,7 @@ nsresult nsWebShell::EndPageLoad(nsIWebProgress *aProgress,
#endif
nsresult
nsWebShell::GetControllerForCommand ( const nsAReadableString & inCommand, nsIController** outController )
nsWebShell::GetControllerForCommand ( const nsAString & inCommand, nsIController** outController )
{
NS_ENSURE_ARG_POINTER(outController);
*outController = nsnull;
@@ -1083,7 +1083,7 @@ nsWebShell::GetControllerForCommand ( const nsAReadableString & inCommand, nsICo
nsresult
nsWebShell::IsCommandEnabled ( const nsAReadableString & inCommand, PRBool* outEnabled )
nsWebShell::IsCommandEnabled ( const nsAString & inCommand, PRBool* outEnabled )
{
NS_ENSURE_ARG_POINTER(outEnabled);
*outEnabled = PR_FALSE;
@@ -1100,7 +1100,7 @@ nsWebShell::IsCommandEnabled ( const nsAReadableString & inCommand, PRBool* outE
nsresult
nsWebShell::DoCommand ( const nsAReadableString & inCommand )
nsWebShell::DoCommand ( const nsAString & inCommand )
{
nsresult rv = NS_ERROR_FAILURE;