зеркало из https://github.com/mozilla/gecko-dev.git
Declare functions static to fix warnings.
This commit is contained in:
Родитель
7c99f4c472
Коммит
8a5fc246e3
|
@ -1742,7 +1742,7 @@ nsHTMLDocument::GetScriptObject(nsIScriptContext *aContext, void** aScriptObject
|
|||
|
||||
|
||||
//----------------------------
|
||||
PRBool IsInline(eHTMLTags aTag)
|
||||
static PRBool IsInline(eHTMLTags aTag)
|
||||
{
|
||||
PRBool result = PR_FALSE;
|
||||
|
||||
|
@ -1789,7 +1789,7 @@ PRBool IsInline(eHTMLTags aTag)
|
|||
}
|
||||
|
||||
//----------------------------
|
||||
PRBool IsBlockLevel(eHTMLTags aTag, PRBool &isPreTag)
|
||||
static PRBool IsBlockLevel(eHTMLTags aTag, PRBool &isPreTag)
|
||||
{
|
||||
isPreTag = (aTag == eHTMLTag_pre);
|
||||
|
||||
|
@ -2335,7 +2335,7 @@ void printDOMRefs(nsIDOMNode * aNode, PRInt32 aLevel)
|
|||
|
||||
|
||||
|
||||
nsIDOMNode * FindDOMNode(nsIDOMNode * aNode, nsIContent * aContent)
|
||||
static nsIDOMNode * FindDOMNode(nsIDOMNode * aNode, nsIContent * aContent)
|
||||
{
|
||||
nsIContent* content;
|
||||
nsresult rv = aNode->QueryInterface(kIContentIID,(void **)&content);
|
||||
|
|
|
@ -1742,7 +1742,7 @@ nsHTMLDocument::GetScriptObject(nsIScriptContext *aContext, void** aScriptObject
|
|||
|
||||
|
||||
//----------------------------
|
||||
PRBool IsInline(eHTMLTags aTag)
|
||||
static PRBool IsInline(eHTMLTags aTag)
|
||||
{
|
||||
PRBool result = PR_FALSE;
|
||||
|
||||
|
@ -1789,7 +1789,7 @@ PRBool IsInline(eHTMLTags aTag)
|
|||
}
|
||||
|
||||
//----------------------------
|
||||
PRBool IsBlockLevel(eHTMLTags aTag, PRBool &isPreTag)
|
||||
static PRBool IsBlockLevel(eHTMLTags aTag, PRBool &isPreTag)
|
||||
{
|
||||
isPreTag = (aTag == eHTMLTag_pre);
|
||||
|
||||
|
@ -2335,7 +2335,7 @@ void printDOMRefs(nsIDOMNode * aNode, PRInt32 aLevel)
|
|||
|
||||
|
||||
|
||||
nsIDOMNode * FindDOMNode(nsIDOMNode * aNode, nsIContent * aContent)
|
||||
static nsIDOMNode * FindDOMNode(nsIDOMNode * aNode, nsIContent * aContent)
|
||||
{
|
||||
nsIContent* content;
|
||||
nsresult rv = aNode->QueryInterface(kIContentIID,(void **)&content);
|
||||
|
|
|
@ -506,7 +506,7 @@ NS_METHOD nsTableRowGroupFrame::PullUpAllRowFrames(nsIPresContext& aPresContext)
|
|||
return NS_OK;
|
||||
}
|
||||
|
||||
void GetNextRowSibling(nsIFrame** aRowFrame)
|
||||
static void GetNextRowSibling(nsIFrame** aRowFrame)
|
||||
{
|
||||
nsresult rv = (*aRowFrame)->GetNextSibling(aRowFrame);
|
||||
while(*aRowFrame && (NS_SUCCEEDED(rv))) {
|
||||
|
|
|
@ -506,7 +506,7 @@ NS_METHOD nsTableRowGroupFrame::PullUpAllRowFrames(nsIPresContext& aPresContext)
|
|||
return NS_OK;
|
||||
}
|
||||
|
||||
void GetNextRowSibling(nsIFrame** aRowFrame)
|
||||
static void GetNextRowSibling(nsIFrame** aRowFrame)
|
||||
{
|
||||
nsresult rv = (*aRowFrame)->GetNextSibling(aRowFrame);
|
||||
while(*aRowFrame && (NS_SUCCEEDED(rv))) {
|
||||
|
|
Загрузка…
Ссылка в новой задаче