[Libreoffice-commits] core.git: sfx2/source
Noel Grandin (via logerrit)
logerrit at kemper.freedesktop.org
Wed Nov 6 07:52:20 UTC 2019
sfx2/source/toolbox/tbxitem.cxx | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
New commits:
commit e4049dfb6aebd6ec0097e9eeed5376c874660cd5
Author: Noel Grandin <noel.grandin at collabora.co.uk>
AuthorDate: Wed Nov 6 08:05:04 2019 +0200
Commit: Noel Grandin <noel.grandin at collabora.co.uk>
CommitDate: Wed Nov 6 08:51:04 2019 +0100
fix translate bug in SfxPopupWindow::MouseMove
there since initial import
Change-Id: Ic38ab070c22632dde00cdea0b109b236f8590654
Reviewed-on: https://gerrit.libreoffice.org/82117
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin at collabora.co.uk>
diff --git a/sfx2/source/toolbox/tbxitem.cxx b/sfx2/source/toolbox/tbxitem.cxx
index dd5aad9f838a..47c00af49c09 100644
--- a/sfx2/source/toolbox/tbxitem.cxx
+++ b/sfx2/source/toolbox/tbxitem.cxx
@@ -817,10 +817,10 @@ void SfxPopupWindow::MouseMove( const ::MouseEvent& rMEvt )
vcl::Window* pWindow = GetChild( i );
while ( pWindow )
{
- ::MouseEvent aMEvt( pWindow->ScreenToOutputPixel( aScrPos ),
+ ::MouseEvent aChildMEvt( pWindow->ScreenToOutputPixel( aScrPos ),
rMEvt.GetClicks(), rMEvt.GetMode(),
rMEvt.GetButtons(), rMEvt.GetModifier() );
- pWindow->MouseMove( rMEvt );
+ pWindow->MouseMove( aChildMEvt );
pWindow->Update();
i++;
pWindow = GetChild( i );
More information about the Libreoffice-commits
mailing list