avoid generating wxEVT_CHAR when WriteText() is called from wxEVT_CHAR handler, closes #16717

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@78263 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Paul Cornett
2014-12-11 18:34:37 +00:00
parent 0918246efa
commit def8247c61

View File

@@ -1100,6 +1100,11 @@ void wxTextCtrl::WriteText( const wxString &text )
// we're changing the text programmatically
DontMarkDirtyOnNextChange();
// avoid generating wxEVT_CHAR when called from wxEVT_CHAR handler
GdkEventKey* const imKeyEvent_save = m_imKeyEvent;
m_imKeyEvent = NULL;
wxON_BLOCK_EXIT_SET(m_imKeyEvent, imKeyEvent_save);
if ( !IsMultiLine() )
{
wxTextEntry::WriteText(text);