зеркало из https://github.com/mozilla/pjs.git
making string conversions explicit, and converting global static returning function to the canonical form
This commit is contained in:
Родитель
6d5a22ee1e
Коммит
24b5c26c82
|
@ -851,7 +851,7 @@ nsHTMLToTXTSinkStream::AddLeaf(const nsIParserNode& aNode)
|
|||
{
|
||||
EnsureVerticalSpace(mEmptyLines+1);
|
||||
}
|
||||
else Write(" ");
|
||||
else Write(NS_ConvertASCIItoUCS2(" "));
|
||||
}
|
||||
else if (type == eHTMLTag_hr &&
|
||||
(mFlags & nsIDocumentEncoder::OutputFormatted))
|
||||
|
|
|
@ -32,11 +32,10 @@ static NS_DEFINE_IID(kISupportsIID, NS_ISUPPORTS_IID);
|
|||
static NS_DEFINE_IID(kClassIID, NS_PARSER_NODE_IID);
|
||||
static NS_DEFINE_IID(kIParserNodeIID, NS_IPARSER_NODE_IID);
|
||||
|
||||
nsString& GetEmptyString() {
|
||||
static nsString* gEmptyStr=0;
|
||||
if(!gEmptyStr)
|
||||
gEmptyStr=new nsString;
|
||||
return *gEmptyStr;
|
||||
static
|
||||
const nsString& GetEmptyString() {
|
||||
static nsString gEmptyStr;
|
||||
return gEmptyStr;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
|
@ -851,7 +851,7 @@ nsHTMLToTXTSinkStream::AddLeaf(const nsIParserNode& aNode)
|
|||
{
|
||||
EnsureVerticalSpace(mEmptyLines+1);
|
||||
}
|
||||
else Write(" ");
|
||||
else Write(NS_ConvertASCIItoUCS2(" "));
|
||||
}
|
||||
else if (type == eHTMLTag_hr &&
|
||||
(mFlags & nsIDocumentEncoder::OutputFormatted))
|
||||
|
|
|
@ -32,11 +32,10 @@ static NS_DEFINE_IID(kISupportsIID, NS_ISUPPORTS_IID);
|
|||
static NS_DEFINE_IID(kClassIID, NS_PARSER_NODE_IID);
|
||||
static NS_DEFINE_IID(kIParserNodeIID, NS_IPARSER_NODE_IID);
|
||||
|
||||
nsString& GetEmptyString() {
|
||||
static nsString* gEmptyStr=0;
|
||||
if(!gEmptyStr)
|
||||
gEmptyStr=new nsString;
|
||||
return *gEmptyStr;
|
||||
static
|
||||
const nsString& GetEmptyString() {
|
||||
static nsString gEmptyStr;
|
||||
return gEmptyStr;
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Загрузка…
Ссылка в новой задаче