it is not possible to show/hide the window from the UpdateUI event handler; refactored the code by moving control-specific parts into the derived classes (patch 1338350)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@37536 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -1581,17 +1581,20 @@ wxString wxRichTextCtrl::GetStringSelection() const
|
||||
}
|
||||
|
||||
// do the window-specific processing after processing the update event
|
||||
#if !wxRICHTEXT_DERIVES_FROM_TEXTCTRLBASE
|
||||
void wxRichTextCtrl::DoUpdateWindowUI(wxUpdateUIEvent& event)
|
||||
{
|
||||
if ( event.GetSetEnabled() )
|
||||
Enable(event.GetEnabled());
|
||||
// call inherited
|
||||
wxWindowBase::DoUpdateWindowUI(event);
|
||||
|
||||
// update text
|
||||
if ( event.GetSetText() )
|
||||
{
|
||||
if ( event.GetText() != GetValue() )
|
||||
SetValue(event.GetText());
|
||||
}
|
||||
}
|
||||
#endif // !wxRICHTEXT_DERIVES_FROM_TEXTCTRLBASE
|
||||
|
||||
// ----------------------------------------------------------------------------
|
||||
// hit testing
|
||||
|
||||
Reference in New Issue
Block a user