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

@@ -59,7 +59,7 @@ public:
protected:
static PRBool PR_CALLBACK HashEnum(nsHashKey *aKey, void *aData, void* aClosure);
static PRBool HashEnum(nsHashKey *aKey, void *aData, void* aClosure);
nsresult Initialize();

View File

@@ -70,7 +70,7 @@ protected:
protected:
static PRBool PR_CALLBACK ClearEnumerator(nsHashKey *aKey, void *aData, void* closure);
static PRBool ClearEnumerator(nsHashKey *aKey, void *aData, void* closure);
protected:

View File

@@ -70,7 +70,7 @@ nsCommandManager::~nsCommandManager()
}
PR_STATIC_CALLBACK(PLDHashOperator)
static PLDHashOperator
TraverseCommandObservers(const char* aKey, nsCOMArray<nsIObserver>* aObservers,
void* aClosure)
{

View File

@@ -151,15 +151,15 @@ protected:
protected:
static PLDHashNumber PR_CALLBACK HashKey(PLDHashTable *table, const void *key);
static PLDHashNumber HashKey(PLDHashTable *table, const void *key);
static PRBool PR_CALLBACK HashMatchEntry(PLDHashTable *table,
const PLDHashEntryHdr *entry, const void *key);
static PRBool HashMatchEntry(PLDHashTable *table,
const PLDHashEntryHdr *entry, const void *key);
static void PR_CALLBACK HashMoveEntry(PLDHashTable *table, const PLDHashEntryHdr *from,
PLDHashEntryHdr *to);
static void HashMoveEntry(PLDHashTable *table, const PLDHashEntryHdr *from,
PLDHashEntryHdr *to);
static void PR_CALLBACK HashClearEntry(PLDHashTable *table, PLDHashEntryHdr *entry);
static void HashClearEntry(PLDHashTable *table, PLDHashEntryHdr *entry);
protected: