Bug 445570 - Heap-allocated autostrings in DOM/content, r+sr=jst

This commit is contained in:
Benjamin Smedberg 2008-07-17 11:05:20 -04:00
parent 712e9200d7
commit 0e96dd742e
4 changed files with 4 additions and 4 deletions

View File

@ -85,7 +85,7 @@ protected:
*/
PRBool GetAttrValue(nsIAtom *aName, nsAString& aValue);
nsAutoString mTarget;
nsString mTarget;
};
#endif //nsIXMLProcessingInstruction_h___

View File

@ -72,7 +72,7 @@ private:
const char * GetCharsetForUrlBar();
nsCOMPtr<nsIPrefBranch> mPrefBranch;
nsCAutoString mFsCharset;
nsCString mFsCharset;
};
#endif

View File

@ -99,7 +99,7 @@ private:
// filename, line number and JS language version string of the
// caller of setTimeout()
nsCAutoString mFileName;
nsCString mFileName;
PRUint32 mLineNo;
PRUint32 mVersion;
nsCOMPtr<nsIArray> mArgv;

View File

@ -191,7 +191,7 @@ protected:
nsCOMPtr<nsIURI> mURI;
// domain this store is associated with
nsAutoString mDomain;
nsString mDomain;
// the key->value item pairs
nsTHashtable<nsSessionStorageEntry> mItems;