mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-25 13:51:41 +00:00
Move static constructor into function instead of global. It was coredumping on AIX
This commit is contained in:
parent
9acf604770
commit
43857716d1
@ -583,9 +583,9 @@ PRInt32 CRTFContent::GetTokenType() {
|
||||
* @param
|
||||
* @return
|
||||
*/
|
||||
static nsString textTerminators("\\{}");
|
||||
|
||||
nsresult CRTFContent::Consume(PRUnichar aChar,nsScanner& aScanner) {
|
||||
static nsString textTerminators("\\{}");
|
||||
PRInt32 result=aScanner.ReadUntil(mTextValue,textTerminators,PR_FALSE,PR_FALSE);
|
||||
return result;
|
||||
}
|
||||
|
@ -583,9 +583,9 @@ PRInt32 CRTFContent::GetTokenType() {
|
||||
* @param
|
||||
* @return
|
||||
*/
|
||||
static nsString textTerminators("\\{}");
|
||||
|
||||
nsresult CRTFContent::Consume(PRUnichar aChar,nsScanner& aScanner) {
|
||||
static nsString textTerminators("\\{}");
|
||||
PRInt32 result=aScanner.ReadUntil(mTextValue,textTerminators,PR_FALSE,PR_FALSE);
|
||||
return result;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user