From e6474d62a80285b97d77c8813c8d28b518eaf094 Mon Sep 17 00:00:00 2001 From: Julian Smart Date: Mon, 2 Oct 2006 12:38:47 +0000 Subject: [PATCH] Compilo fix git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@41562 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/richtext/richtextctrl.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/richtext/richtextctrl.cpp b/src/richtext/richtextctrl.cpp index a795c052f7..6e81260692 100644 --- a/src/richtext/richtextctrl.cpp +++ b/src/richtext/richtextctrl.cpp @@ -1610,7 +1610,7 @@ void wxRichTextCtrl::SelectNone() static bool wxIsWordDelimiter(const wxString& text) { - static wxString delimiters = wxT(" ,.:;!?-\"'~£$%^&*()_+-=`¬{}[]@#<>/\\|"); + static wxString delimiters = wxT(" ,.:;!?-\"'~£$%^&*()_+-={}[]@#<>/\\|"); return !text.IsEmpty() && delimiters.Find(text) != wxNOT_FOUND; } -- 2.45.2