Bug 456388 - Remove PR_STATIC_CALLBACK and PR_CALLBACK(_DECL) from the tree; r+sr=brendan

This commit is contained in:
Arpad Borsos
2008-10-10 17:04:34 +02:00
parent fd920902d9
commit 1b55360c07
259 changed files with 850 additions and 871 deletions

View File

@@ -5072,8 +5072,7 @@ ParseSelectorList(nsINode* aNode,
* the callbacks returns false, the iteration should be stopped.
*/
typedef PRBool
(* PR_CALLBACK ElementMatchedCallback)(nsIContent* aMatchingElement,
void* aClosure);
(* ElementMatchedCallback)(nsIContent* aMatchingElement, void* aClosure);
// returning false means stop iteration
static PRBool
@@ -5169,7 +5168,7 @@ TryMatchingElementsInSubtree(nsINode* aRoot,
return continueIteration;
}
PR_STATIC_CALLBACK(PRBool)
static PRBool
FindFirstMatchingElement(nsIContent* aMatchingElement,
void* aClosure)
{
@@ -5205,7 +5204,7 @@ nsGenericElement::doQuerySelector(nsINode* aRoot, const nsAString& aSelector,
return NS_OK;
}
PR_STATIC_CALLBACK(PRBool)
static PRBool
AppendAllMatchingElements(nsIContent* aMatchingElement,
void* aClosure)
{