]> git.saurik.com Git - wxWidgets.git/blobdiff - interface/wx/hashmap.h
remove ancient defines left over from GTK1
[wxWidgets.git] / interface / wx / hashmap.h
index b7554e815b87e7f3b805cbbe0658c2c97783b17b..d0bf672e294e0c176b91b00add7058f10ad25622 100644 (file)
@@ -2,7 +2,6 @@
 // Name:        hashmap.h
 // Purpose:     interface of wxHashMap
 // Author:      wxWidgets team
 // Name:        hashmap.h
 // Purpose:     interface of wxHashMap
 // Author:      wxWidgets team
-// RCS-ID:      $Id$
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
 // Licence:     wxWindows licence
 /////////////////////////////////////////////////////////////////////////////
 
@@ -83,8 +82,8 @@
     @code
     WX_DECLARE_HASH_MAP( int,
                          wxString,
     @code
     WX_DECLARE_HASH_MAP( int,
                          wxString,
-                         ::wxIntegerHash,
-                         ::wxIntegerEqual,
+                         wxIntegerHash,
+                         wxIntegerEqual,
                          MyHash );
 
     // using an user-defined class for keys
                          MyHash );
 
     // using an user-defined class for keys
 
     WX_DECLARE_HASH_MAP( MyKey,      // type of the keys
                          SOME_TYPE,  // any type you like
 
     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
 
                          CLASSNAME); // name of the class
     @endcode