]> git.saurik.com Git - wxWidgets.git/blobdiff - docs/latex/wx/hash.tex
fix warning
[wxWidgets.git] / docs / latex / wx / hash.tex
index 7c60031e913044f84ba3947ee6a62a925de61e78..37cd59f4d7c6868cecb48ce6201a416addd9be83 100644 (file)
@@ -3,7 +3,7 @@
 {\bf Please note} that this class is retained for backward compatibility
 reasons; you should use \helpref{wxHashMap}{wxhashmap}.
 
-This class provides hash table functionality for wxWindows, and for an
+This class provides hash table functionality for wxWidgets, and for an
 application if it wishes.  Data can be hashed on an integer or string
 key.
 
@@ -20,7 +20,7 @@ key.
 Below is an example of using a hash table.
 
 \begin{verbatim}
-  wxHashTable table(KEY_STRING);
+  wxHashTable table(wxKEY_STRING);
 
   wxPoint *point = new wxPoint(100, 200);
   table.Put("point 1", point);