diff options
author | Andrea Gelmini <andrea.gelmini@gelma.net> | 2017-03-29 17:50:59 +0200 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2017-03-29 18:59:31 +0000 |
commit | 9c95a2062ed5088c72189e0bb3e70b1b853de934 (patch) | |
tree | 4b2ac6aaf2c01adb1b2eabdbec158245b27bce81 /sfx2 | |
parent | fc97021142786298418d80e0ed9634908b0ba9d7 (diff) |
Fix typo in method
Change-Id: Ib2b05abaeacd3b8787f938a49a0d9673096b5f42
Reviewed-on: https://gerrit.libreoffice.org/35857
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'sfx2')
-rw-r--r-- | sfx2/inc/guisaveas.hxx | 2 | ||||
-rw-r--r-- | sfx2/source/doc/guisaveas.cxx | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/sfx2/inc/guisaveas.hxx b/sfx2/inc/guisaveas.hxx index eb742e045300..ee044218caad 100644 --- a/sfx2/inc/guisaveas.hxx +++ b/sfx2/inc/guisaveas.hxx @@ -65,7 +65,7 @@ public: const OUString& aUserSelectedName, SignatureState nDocumentSignatureState ); - static bool CheckFilterOptionsAppearence( + static bool CheckFilterOptionsAppearance( const css::uno::Reference< css::container::XNameAccess >& xFilterCFG, const OUString& aFilterName ); diff --git a/sfx2/source/doc/guisaveas.cxx b/sfx2/source/doc/guisaveas.cxx index 237821beaee7..8744d1e22f53 100644 --- a/sfx2/source/doc/guisaveas.cxx +++ b/sfx2/source/doc/guisaveas.cxx @@ -1078,7 +1078,7 @@ bool ModelData_Impl::OutputFileDialog( sal_Int8 nStoreMode, uno::Reference< ui::dialogs::XFilePickerControlAccess > xExtFileDlg( pFileDlg->GetFilePicker(), uno::UNO_QUERY ); if ( xExtFileDlg.is() ) { - if ( SfxStoringHelper::CheckFilterOptionsAppearence( m_pOwner->GetFilterConfiguration(), aFilterName ) ) + if ( SfxStoringHelper::CheckFilterOptionsAppearance( m_pOwner->GetFilterConfiguration(), aFilterName ) ) bUseFilterOptions = true; if ( ( !( nStoreMode & EXPORT_REQUESTED ) || ( nStoreMode & WIDEEXPORT_REQUESTED ) ) && bUseFilterOptions ) @@ -1698,7 +1698,7 @@ bool SfxStoringHelper::GUIStoreModel( const uno::Reference< frame::XModel >& xMo // static -bool SfxStoringHelper::CheckFilterOptionsAppearence( +bool SfxStoringHelper::CheckFilterOptionsAppearance( const uno::Reference< container::XNameAccess >& xFilterCFG, const OUString& aFilterName ) { |