refine the condition check and correct a check condition

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@77839 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2014-09-23 17:43:12 +00:00
parent 17c3ad1914
commit 786c64e040

View File

@@ -1413,9 +1413,9 @@ void wxRichTextCtrl::OnChar(wxKeyEvent& event)
GetId());
cmdEvent1.SetEventObject(this);
cmdEvent1.SetFlags(flags);
#if wxUSE_UNICODE || !__WXX11__
#if wxUSE_UNICODE && !__WXX11__
cmdEvent1.SetCharacter(event.GetUnicodeKey());
#elif !wxUSE_UNICODE || __WXX11__
#else
cmdEvent1.SetCharacter((wxChar) keycode);
#endif
cmdEvent1.SetPosition(m_caretPosition+1);
@@ -1432,7 +1432,7 @@ void wxRichTextCtrl::OnChar(wxKeyEvent& event)
cmdEvent.SetFlags(flags);
#if wxUSE_UNICODE && !__WXX11__
cmdEvent.SetCharacter(event.GetUnicodeKey());
#elif !wxUSE_UNICODE || __WXX11__
#else
cmdEvent.SetCharacter((wxChar) keycode);
#endif
cmdEvent.SetPosition(m_caretPosition+1);
@@ -1475,7 +1475,7 @@ void wxRichTextCtrl::OnChar(wxKeyEvent& event)
#if wxUSE_UNICODE && !__WXX11__
wxString str = event.GetUnicodeKey();
#elif !wxUSE_UNICODE || __WXX11__
#else
wxString str = (wxChar) event.GetKeyCode();
#endif
GetFocusObject()->InsertTextWithUndo(& GetBuffer(), newPos+1, str, this, 0);