[Libreoffice-commits] core.git: fpicker/source

Andras Timar andras.timar at collabora.com
Sun Mar 30 04:04:01 PDT 2014


 fpicker/source/office/iodlg.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 4c4ce2c9190c30cbdab9f51896a1c5490df49511
Author: Andras Timar <andras.timar at collabora.com>
Date:   Sun Mar 30 13:03:30 2014 +0200

    fix warning: shadowed declaration
    
    Change-Id: If602f8ee11938278ce67c77c909d05272ac585fd

diff --git a/fpicker/source/office/iodlg.cxx b/fpicker/source/office/iodlg.cxx
index b3ba51b..7e3184f 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;


More information about the Libreoffice-commits mailing list