add some missing semicolons

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@57193 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Francesco Montorsi
2008-12-08 16:20:51 +00:00
parent 10118a24c8
commit e723ee9439

View 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 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 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(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_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 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 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 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 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(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_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 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 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 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 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(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_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 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 wchar_t* sz, size_t nStart = npos) const;
size_t find_last_not_of(const char* sz, size_t nStart, size_t n) const; size_t find_last_not_of(const char* sz, size_t nStart, size_t n) const;