diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-12-22 13:56:26 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-12-22 13:56:26 +0000 |
commit | 1fab56683a9e98d9252e5680d1eb509942b2dd95 (patch) | |
tree | c17187dd596cf2d4a1097fa3ff874cc0a598671b /vcl | |
parent | 993fd27d3afddbaf6caaaf50d94bbbdb8b705514 (diff) |
Resolves: fdo#85875 MultiLineEdit like Edit should not forward mouse-[down|up]
Change-Id: Ia2aa69461effe0099ca9208eb0eb8aec9548de08
Diffstat (limited to 'vcl')
-rw-r--r-- | vcl/source/edit/vclmedit.cxx | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/vcl/source/edit/vclmedit.cxx b/vcl/source/edit/vclmedit.cxx index 0ec3741d03bc..c160340917b4 100644 --- a/vcl/source/edit/vclmedit.cxx +++ b/vcl/source/edit/vclmedit.cxx @@ -748,7 +748,6 @@ void TextWindow::MouseButtonDown( const MouseEvent& rMEvt ) mbInMBDown = true; // so that GetFocus does not select everything mpExtTextView->MouseButtonDown( rMEvt ); - Window::MouseButtonDown( rMEvt ); GrabFocus(); mbInMBDown = false; } @@ -756,7 +755,6 @@ void TextWindow::MouseButtonDown( const MouseEvent& rMEvt ) void TextWindow::MouseButtonUp( const MouseEvent& rMEvt ) { mpExtTextView->MouseButtonUp( rMEvt ); - Window::MouseButtonUp( rMEvt ); } void TextWindow::KeyInput( const KeyEvent& rKEvent ) |