Moved the implementation of AssignWithConversion to the cpp file since Linux and Windows didn't like it inline in the h file. r=scc

git-svn-id: svn://10.0.0.236/trunk@66851 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
tbogard%aol.net
2000-04-22 09:17:20 +00:00
parent 22fed30c55
commit 5a9e9b10c1
6 changed files with 18 additions and 3 deletions

View File

@@ -938,6 +938,11 @@ void nsCString::AssignWithConversion(const PRUnichar* aString,PRInt32 aCount) {
}
}
void nsCString::AssignWithConversion( const nsString& aString ) {
AssignWithConversion(aString.GetUnicode(), aString.Length());
}
/**
* assign given unichar to this string