summaryrefslogtreecommitdiff
path: root/fpicker
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2015-05-10 13:44:05 +0200
committerStephan Bergmann <sbergman@redhat.com>2015-05-10 13:44:05 +0200
commit2796bc31e90c87cee10d832a67b1fd9dcab6e51f (patch)
tree189cc1f4f53a8222af53282f89ebfae7a42cfe26 /fpicker
parent5e62f81c757beeb23ecd4b3b37b108601e01fea6 (diff)
-Werror=shadow
Change-Id: I27493171620e93c8ca35345c3320fb8f6da5d2ab
Diffstat (limited to 'fpicker')
-rw-r--r--fpicker/source/office/iodlg.cxx4
1 files 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;
}