]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/hashmap.h
Use C locale representation for floating point numbers in wxAny.
[wxWidgets.git] / interface / wx / hashmap.h
index b7554e815b87e7f3b805cbbe0658c2c97783b17b..b816f836fcaafdea10a9ecbe2463524fcbcf32c3 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