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:08:20 +00:00
parent 9d35404b59
commit 6ae2708a2b
30 changed files with 401 additions and 401 deletions

View File

@@ -100,7 +100,7 @@
#include "nsHTMLURIRefObject.h"
#include "nsAWritableString.h"
#include "nsAString.h"
#include "nsString.h"
#include "nsIDOMAttr.h"
#include "nsIDOMElement.h"
@@ -130,7 +130,7 @@ nsHTMLURIRefObject::Reset()
}
NS_IMETHODIMP
nsHTMLURIRefObject::GetNextURI(nsAWritableString & aURI)
nsHTMLURIRefObject::GetNextURI(nsAString & aURI)
{
if (!mNode)
return NS_ERROR_NOT_INITIALIZED;
@@ -279,8 +279,8 @@ nsHTMLURIRefObject::GetNextURI(nsAWritableString & aURI)
}
NS_IMETHODIMP
nsHTMLURIRefObject::RewriteAllURIs(const nsAReadableString & aOldPat,
const nsAReadableString & aNewPat,
nsHTMLURIRefObject::RewriteAllURIs(const nsAString & aOldPat,
const nsAString & aNewPat,
PRBool aMakeRel)
{
#ifdef DEBUG_akkana