]> git.saurik.com Git - wxWidgets.git/commitdiff
add some missing semicolons
authorFrancesco Montorsi <f18m_cpp217828@yahoo.it>
Mon, 8 Dec 2008 16:20:51 +0000 (16:20 +0000)
committerFrancesco Montorsi <f18m_cpp217828@yahoo.it>
Mon, 8 Dec 2008 16:20:51 +0000 (16:20 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@57193 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

interface/wx/string.h

index 7d57b228a63521288a179db8e5e4d8912a4730fd..a88ae09f14d5e718ad97a7b4089d63eea1bd7d23 100644 (file)
@@ -1301,20 +1301,20 @@ public:
         size_t find_first_of(const wchar_t* sz, size_t nStart = 0) const;
         size_t find_first_of(const char* sz, size_t nStart, size_t n) const;
         size_t find_first_of(const wchar_t* sz, size_t nStart, size_t n) const;
-        size_t find_first_of(wxUniChar c, size_t nStart = 0) const
-        size_t find_last_of (const wxString& str, size_t nStart = npos) const
+        size_t find_first_of(wxUniChar c, size_t nStart = 0) const;
+        size_t find_last_of (const wxString& str, size_t nStart = npos) const;
         size_t find_last_of (const char* sz, size_t nStart = npos) const;
         size_t find_last_of (const wchar_t* sz, size_t nStart = npos) const;
         size_t find_last_of(const char* sz, size_t nStart, size_t n) const;
         size_t find_last_of(const wchar_t* sz, size_t nStart, size_t n) const;
-        size_t find_last_of(wxUniChar c, size_t nStart = npos) const
-        size_t find_first_not_of(const wxString& str, size_t nStart = 0) const
+        size_t find_last_of(wxUniChar c, size_t nStart = npos) const;
+        size_t find_first_not_of(const wxString& str, size_t nStart = 0) const;
         size_t find_first_not_of(const char* sz, size_t nStart = 0) const;
         size_t find_first_not_of(const wchar_t* sz, size_t nStart = 0) const;
         size_t find_first_not_of(const char* sz, size_t nStart, size_t n) const;
         size_t find_first_not_of(const wchar_t* sz, size_t nStart, size_t n) const;
         size_t find_first_not_of(wxUniChar ch, size_t nStart = 0) const;
-        size_t find_last_not_of(const wxString& str, size_t nStart = npos) const
+        size_t find_last_not_of(const wxString& str, size_t nStart = npos) const;
         size_t find_last_not_of(const char* sz, size_t nStart = npos) const;
         size_t find_last_not_of(const wchar_t* sz, size_t nStart = npos) const;
         size_t find_last_not_of(const char* sz, size_t nStart, size_t n) const;
@@ -1339,23 +1339,23 @@ public:
         wxString& replace(size_t nStart, size_t nLen, const wxString& str);
         wxString& replace(size_t nStart, size_t nLen, size_t nCount, wxUniChar ch);
         wxString& replace(size_t nStart, size_t nLen,
-                    const wxString& str, size_t nStart2, size_t nLen2);
+                          const wxString& str, size_t nStart2, size_t nLen2);
         wxString& replace(size_t nStart, size_t nLen,
-                    const char* sz, size_t nCount);
+                          const char* sz, size_t nCount);
         wxString& replace(size_t nStart, size_t nLen,
-                    const wchar_t* sz, size_t nCount);
+                          const wchar_t* sz, size_t nCount);
         wxString& replace(size_t nStart, size_t nLen,
-                    const wxString& s, size_t nCount);
+                          const wxString& s, size_t nCount);
         wxString& replace(iterator first, iterator last, const wxString& s);
         wxString& replace(iterator first, iterator last, const char* s, size_type n);
         wxString& replace(iterator first, iterator last, const wchar_t* s, size_type n);
         wxString& replace(iterator first, iterator last, size_type n, wxUniChar ch);
         wxString& replace(iterator first, iterator last,
-                    const_iterator first1, const_iterator last1);
+                          const_iterator first1, const_iterator last1);
         wxString& replace(iterator first, iterator last,
-                    const char *first1, const char *last1);
+                          const char *first1, const char *last1);
         wxString& replace(iterator first, iterator last,
-                    const wchar_t *first1, const wchar_t *last1);
+                          const wchar_t *first1, const wchar_t *last1);
 
         size_t rfind(const wxString& str, size_t nStart = npos) const;
         size_t rfind(const char* sz, size_t nStart = npos, size_t n = npos) const;