diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-01-25 15:05:53 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-01-26 08:01:13 +0100 |
commit | b9fe4f26eaf1099b8d0907b8d9cbf52c86914466 (patch) | |
tree | fd80c20323ce7c72303c98a11454f607888d6c86 /vcl/source/window | |
parent | de60c73db31ec34ffb2e008829083bb7ddcb3061 (diff) |
rename some local variables
mostly to make the job of my very aggressive unused local vars plugin
easier
Change-Id: Ifc21a920841f8589f8b7e10de39dba6622a5d501
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/87399
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'vcl/source/window')
-rw-r--r-- | vcl/source/window/dndeventdispatcher.cxx | 2 | ||||
-rw-r--r-- | vcl/source/window/menu.cxx | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/vcl/source/window/dndeventdispatcher.cxx b/vcl/source/window/dndeventdispatcher.cxx index 9af6ab6e76c3..47adfcf87d5a 100644 --- a/vcl/source/window/dndeventdispatcher.cxx +++ b/vcl/source/window/dndeventdispatcher.cxx @@ -365,7 +365,7 @@ sal_Int32 DNDEventDispatcher::fireDropEvent( vcl::Window *pWindow, Reference< XDropTarget > xDropTarget = pWindow->GetDropTarget(); // window may be destroyed in drop event handler - VclPtr<vcl::Window> xWindow = pWindow; + VclPtr<vcl::Window> xPreventDelete = pWindow; if( xDropTarget.is() ) { diff --git a/vcl/source/window/menu.cxx b/vcl/source/window/menu.cxx index 3a54ca66b692..e2a617270af2 100644 --- a/vcl/source/window/menu.cxx +++ b/vcl/source/window/menu.cxx @@ -2946,7 +2946,7 @@ sal_uInt16 PopupMenu::ImplExecute( const VclPtr<vcl::Window>& pW, const tools::R } // tdf#126054 hold this until after function completes - VclPtr<PopupMenu> m_xThis(this); + VclPtr<PopupMenu> xThis(this); pWin->SetFocusId( xFocusId ); pWin->SetOutputSizePixel( aSz ); |