X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8cddee2d0ec042b15e633944a0c30dae77357175..cbabf356ce00eb70f677e8483f54062805730e14:/interface/wx/hashmap.h?ds=sidebyside diff --git a/interface/wx/hashmap.h b/interface/wx/hashmap.h index b7554e815b..d0bf672e29 100644 --- a/interface/wx/hashmap.h +++ b/interface/wx/hashmap.h @@ -2,7 +2,6 @@ // Name: hashmap.h // Purpose: interface of wxHashMap // Author: wxWidgets team -// RCS-ID: $Id$ // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// @@ -83,8 +82,8 @@ @code WX_DECLARE_HASH_MAP( int, wxString, - ::wxIntegerHash, - ::wxIntegerEqual, + wxIntegerHash, + wxIntegerEqual, MyHash ); // using an user-defined class for keys @@ -119,8 +118,8 @@ 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