From 16128382a926899656aac523d1e2c1ba2a6076be Mon Sep 17 00:00:00 2001 From: David Rose Date: Sat, 2 Oct 2004 12:17:26 +0000 Subject: [PATCH] hashing not a great idea here --- panda/src/event/eventHandler.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/panda/src/event/eventHandler.h b/panda/src/event/eventHandler.h index e57f6c8ae4..b77ef5f2ab 100644 --- a/panda/src/event/eventHandler.h +++ b/panda/src/event/eventHandler.h @@ -72,11 +72,11 @@ public: protected: - typedef phash_set Functions; - typedef phash_map Hooks; + typedef pset Functions; + typedef pmap Hooks; typedef pair CallbackFunction; typedef pset CallbackFunctions; - typedef phash_map CallbackHooks; + typedef pmap CallbackHooks; Hooks _hooks; CallbackHooks _cbhooks;