git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@40609
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
WPARAM wParam,
LPARAM lParam)
{
WPARAM wParam,
LPARAM lParam)
{
- wxWindow *win = wxFindWinFromHandle((WXHWND)hWnd);
-
switch ( message )
{
case WM_CUT:
case WM_COPY:
case WM_PASTE:
switch ( message )
{
case WM_CUT:
case WM_COPY:
case WM_PASTE:
- if( win->HandleClipboardEvent( message ) )
- return 0;
- break;
+ {
+ wxWindow *win = wxFindWinFromHandle((WXHWND)hWnd);
+ if( win->HandleClipboardEvent( message ) )
+ return 0;
+ break;
+ }
}
return ::CallWindowProc(CASTWNDPROC gs_wndprocEdit, hWnd, message, wParam, lParam);
}
}
return ::CallWindowProc(CASTWNDPROC gs_wndprocEdit, hWnd, message, wParam, lParam);
}
// if it doesn't actually move the caret anywhere and so the simple fact of
// doing it results in horrible flicker when appending big amounts of text
// to the control in a few chunks (see DoAddText() test in the text sample)
// if it doesn't actually move the caret anywhere and so the simple fact of
// doing it results in horrible flicker when appending big amounts of text
// to the control in a few chunks (see DoAddText() test in the text sample)
- if ( GetInsertionPoint() == GetLastPosition() )
+ const wxTextPos lastPosition = GetLastPosition();
+ if ( GetInsertionPoint() == lastPosition )
else // !RichEdit 1.0
#endif // wxUSE_RICHEDIT
{
else // !RichEdit 1.0
#endif // wxUSE_RICHEDIT
{
- pos = GetLastPosition();
}
SetInsertionPoint(pos);
}
SetInsertionPoint(pos);