]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/vector.h
declare file-related APIs missing under Palm (pflib-missing.diff part of patch 1894861)
[wxWidgets.git] / include / wx / vector.h
index e8a6b3c573adbc36c75c61ee165c9a4215b220e2..85d925794371ef7e0b162d2def26a4ce7eaf8823 100644 (file)
@@ -104,7 +104,7 @@ template<typename T>
 class wxVector
 {
 private:
-    // Tthis cryptic expression means "typedef Ops to wxVectorMemOpsMovable if
+    // This cryptic expression means "typedef Ops to wxVectorMemOpsMovable if
     // type T is movable type, otherwise to wxVectorMemOpsGeneric".
     //
     // Note that we use typedef instead of privately deriving from this (which