From 2796bc31e90c87cee10d832a67b1fd9dcab6e51f Mon Sep 17 00:00:00 2001 From: Stephan Bergmann Date: Sun, 10 May 2015 13:44:05 +0200 Subject: [PATCH] -Werror=shadow Change-Id: I27493171620e93c8ca35345c3320fb8f6da5d2ab --- fpicker/source/office/iodlg.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fpicker/source/office/iodlg.cxx b/fpicker/source/office/iodlg.cxx index 90432ad734aa..451d5ba07269 100644 --- a/fpicker/source/office/iodlg.cxx +++ b/fpicker/source/office/iodlg.cxx @@ -1246,8 +1246,8 @@ IMPL_LINK_NOARG( SvtFileDialog, FileNameModifiedHdl_Impl ) IMPL_LINK_NOARG( SvtFileDialog, URLBoxModifiedHdl_Impl ) { - OUString _aPath = _pImp->_pEdCurrentPath->GetURL(); - OpenURL_Impl(_aPath); + OUString aPath = _pImp->_pEdCurrentPath->GetURL(); + OpenURL_Impl(aPath); return 0; }