diff options
author | Andras Timar <andras.timar@collabora.com> | 2014-03-30 13:03:30 +0200 |
---|---|---|
committer | Andras Timar <andras.timar@collabora.com> | 2014-03-30 13:03:30 +0200 |
commit | 4c4ce2c9190c30cbdab9f51896a1c5490df49511 (patch) | |
tree | f938f96ee985dad81b5593ee90ab6cbf99fa30f1 /fpicker | |
parent | e7384daa27c954efa6a66dda829f23d7ad1b2a01 (diff) |
fix warning: shadowed declaration
Change-Id: If602f8ee11938278ce67c77c909d05272ac585fd
Diffstat (limited to 'fpicker')
-rw-r--r-- | fpicker/source/office/iodlg.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fpicker/source/office/iodlg.cxx b/fpicker/source/office/iodlg.cxx index b3ba51bf3e41..7e3184fc3a1a 100644 --- a/fpicker/source/office/iodlg.cxx +++ b/fpicker/source/office/iodlg.cxx @@ -2500,7 +2500,7 @@ sal_Bool SvtFileDialog::IsolateFilterFromPath_Impl( OUString& rPath, OUString& r if ( INET_PROT_NOT_VALID != eProt && INET_PROT_FILE != eProt ) nQuestionMarkPos = -1; - sal_Int32 nWildCardPos = std::min( nWildCardPos, nQuestionMarkPos ); + nWildCardPos = std::min( nWildCardPos, nQuestionMarkPos ); } rFilter = aEmpty; |