fixed 'Select All' context menu in wxTextCtrl with wxTE_RICH style

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@52394 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Václav Slavík
2008-03-08 23:04:06 +00:00
parent d0894365ea
commit 2e771cb838

View File

@@ -1305,6 +1305,13 @@ void wxTextCtrl::DoSetSelection(long from, long to, int flags)
#if wxUSE_RICHEDIT
if ( IsRich() )
{
// if from and to are both -1, it means (in wxWidgets) that all text
// should be selected, translate this into Windows convention
if ( (from == -1) && (to == -1) )
{
from = 0;
}
CHARRANGE range;
range.cpMin = from;
range.cpMax = to;