X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/526954c5968baa29218c994ec48e476ae2bd4b9f..1e26459c5e72eb33485fe9919b2a4aaafd01e76b:/interface/wx/hashmap.h diff --git a/interface/wx/hashmap.h b/interface/wx/hashmap.h index c103e44afa..6364471596 100644 --- a/interface/wx/hashmap.h +++ b/interface/wx/hashmap.h @@ -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