]> git.saurik.com Git - wxWidgets.git/blobdiff - docs/latex/wx/hashmap.tex
Exit on frame delete is now initialized and handled in AppBase.
[wxWidgets.git] / docs / latex / wx / hashmap.tex
index 916b4dbe4df92ee588197a69234b5bb90c01fde4..fcaaab90442a171ee1f2161852188d340467a82d 100644 (file)
@@ -8,7 +8,7 @@ whose interface is a subset of the interface of STL containers.
 \begin{verbatim}
     class MyClass { /* ... */ };
 
-    // declare an hash map with string keys and int values
+    // declare a hash map with string keys and int values
     WX_DECLARE_STRING_HASH_MAP( int, MyHash5 );
     // same, with int keys and MyClass* values
     WX_DECLARE_HASH_MAP( int, MyClass*, wxIntegerHash, wxIntegerEqual, MyHash1 );