Compilo fix

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41562 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Julian Smart
2006-10-02 12:38:47 +00:00
parent ce1f7f02c4
commit e6474d62a8

View File

@@ -1610,7 +1610,7 @@ void wxRichTextCtrl::SelectNone()
static bool wxIsWordDelimiter(const wxString& text)
{
static wxString delimiters = wxT(" ,.:;!?-\"'~<7E>$%^&*()_+-=`<60>{}[]@#<>/\\|");
static wxString delimiters = wxT(" ,.:;!?-\"'~<7E>$%^&*()_+-={}[]@#<>/\\|");
return !text.IsEmpty() && delimiters.Find(text) != wxNOT_FOUND;
}