[Libreoffice-commits] core.git: fpicker/source
Stephan Bergmann
sbergman at redhat.com
Wed Mar 23 08:49:21 UTC 2016
fpicker/source/office/iodlg.cxx | 14 --------------
1 file changed, 14 deletions(-)
New commits:
commit beb2c3bed1a6973f02fafa7831b9ab5e51e7badc
Author: Stephan Bergmann <sbergman at redhat.com>
Date: Wed Mar 23 09:48:48 2016 +0100
-Werror=unused-but-set-variable
Change-Id: I77a73caf56878060ba3688c87e9b6d5dd3ae28b1
diff --git a/fpicker/source/office/iodlg.cxx b/fpicker/source/office/iodlg.cxx
index dc1e570..3d86696 100644
--- a/fpicker/source/office/iodlg.cxx
+++ b/fpicker/source/office/iodlg.cxx
@@ -803,20 +803,6 @@ bool SvtFileDialog::createNewUserFilter( const OUString& _rNewFilter )
// is always "*.<something>". But changing this would take some more time than I have now...
// now, the default extension is set to the one of the user filter (or empty)
- // if the former is not allowed (_bAllowUserDefExt = <FALSE/>), we have to use the ext of the current filter
- // (if possible)
- bool bUseCurFilterExt = true;
- OUString sUserFilter = _pImp->_pUserFilter->GetType();
- sal_Int32 nSepPos = sUserFilter.lastIndexOf( '.' );
- if ( nSepPos != -1 )
- {
- OUString sUserExt = sUserFilter.copy( nSepPos + 1 );
- if ( ( -1 == sUserExt.indexOf( '*' ) )
- && ( -1 == sUserExt.indexOf( '?' ) )
- )
- bUseCurFilterExt = false;
- }
-
if ( _pImp->GetCurFilter( ) )
SetDefaultExt( _pImp->GetCurFilter( )->GetExtension() );
else
More information about the Libreoffice-commits
mailing list