]> git.saurik.com Git - wxWidgets.git/commitdiff
Fix more typos
authorRobert Roebling <robert@roebling.de>
Tue, 6 May 2008 20:36:52 +0000 (20:36 +0000)
committerRobert Roebling <robert@roebling.de>
Tue, 6 May 2008 20:36:52 +0000 (20:36 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@53469 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

interface/string.h

index cc01f052be5e1fec4043dc14f7cc115931f882a6..21e0e70d495ff0b3c29a9a5f73d6bc3b6ae9982d 100644 (file)
@@ -1105,7 +1105,7 @@ public:
     wxWritableWCharBuffer wchar_str() const;
 
     /**
-        @name iterator 
+        @name Iterator interface
         
         These methods return iterators to the beginnnig or
         end of the string.
@@ -1135,12 +1135,12 @@ public:
         size_type capacity() const;
         void reserve(size_t sz);
 
-        void resize(size_t nSize, wxUniChar ch = wxT('\0'))
+        void resize(size_t nSize, wxUniChar ch = '\0');
 
         wxString& append(const wxString& str, size_t pos, size_t n);
         wxString& append(const wxString& str);
         wxString& append(const char *sz, size_t n);
-                wxString& append(const wchar_t *sz, size_t n);
+        wxString& append(const wchar_t *sz, size_t n);
         wxString& append(size_t n, wxUniChar ch);
         wxString& append(const_iterator first, const_iterator last);