X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/9e89b438fe3c9bf47cf8ab5126f0d0938221851a..1e26459c5e72eb33485fe9919b2a4aaafd01e76b:/interface/wx/hashmap.h diff --git a/interface/wx/hashmap.h b/interface/wx/hashmap.h index 594d77caa0..6364471596 100644 --- a/interface/wx/hashmap.h +++ b/interface/wx/hashmap.h @@ -3,7 +3,7 @@ // Purpose: interface of wxHashMap // Author: wxWidgets team // RCS-ID: $Id$ -// Licence: wxWindows license +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// /** @@ -83,8 +83,8 @@ @code WX_DECLARE_HASH_MAP( int, wxString, - wxIntegerHash, - wxIntegerEqual, + ::wxIntegerHash, + ::wxIntegerEqual, MyHash ); // using an user-defined class for keys @@ -119,8 +119,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