]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/hashmap.h
Document wxNotificationMessage::Timeout_XXX values.
[wxWidgets.git] / interface / wx / hashmap.h
index c103e44afa4688b620b62bbfa8a1399f394824dd..6364471596a668001265e3ae1e4e6ff570bd410b 100644 (file)
@@ -83,8 +83,8 @@
     @code
     WX_DECLARE_HASH_MAP( int,
                          wxString,
-                         wxIntegerHash,
-                         wxIntegerEqual,
+                         ::wxIntegerHash,
+                         ::wxIntegerEqual,
                          MyHash );
 
     // using an user-defined class for keys
 
     WX_DECLARE_HASH_MAP( MyKey,      // type of the keys
                          SOME_TYPE,  // any type you like
-                         MyKeyHash,  // hasher
-                         MyKeyEqual, // key equality predicate
+                         ::MyKeyHash,  // hasher
+                         ::MyKeyEqual, // key equality predicate
                          CLASSNAME); // name of the class
     @endcode