diff options
author | Caolán McNamara <caolan.mcnamara@collabora.com> | 2023-12-23 16:07:24 +0000 |
---|---|---|
committer | Caolán McNamara <caolan.mcnamara@collabora.com> | 2023-12-30 12:45:45 +0100 |
commit | f0a8b5b81d6be08de6e0d504616a1f09830f7c38 (patch) | |
tree | c13bfc5e50c8e1852bf50531d6fcdff6e59e718c /sc | |
parent | 2c8e9ed3cbe3aed5520ce8f5888dd083f8ee50c3 (diff) |
move IsFuzzing to comphelper
and try something a bit more generic
Change-Id: I1d8256576cd02f0a589df350ba7b53059dd586a5
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/161250
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <caolan.mcnamara@collabora.com>
Diffstat (limited to 'sc')
27 files changed, 59 insertions, 59 deletions
diff --git a/sc/qa/unit/datacache.cxx b/sc/qa/unit/datacache.cxx index e3ee2058f63b..95cf67ae5efb 100644 --- a/sc/qa/unit/datacache.cxx +++ b/sc/qa/unit/datacache.cxx @@ -8,7 +8,7 @@ */ #include <sal/config.h> -#include <unotools/configmgr.hxx> +#include <comphelper/configuration.hxx> #include "helper/qahelper.hxx" #include <global.hxx> @@ -33,7 +33,7 @@ public: public: ScCacheTest() { - utl::ConfigManager::EnableFuzzing(); + comphelper::EnableFuzzing(); ScDLL::Init(); ScGlobal::Init(); } diff --git a/sc/qa/unit/ucalc_range.cxx b/sc/qa/unit/ucalc_range.cxx index 8a48665035c5..387cf4b7bb87 100644 --- a/sc/qa/unit/ucalc_range.cxx +++ b/sc/qa/unit/ucalc_range.cxx @@ -9,7 +9,7 @@ #include <sal/config.h> #include "helper/qahelper.hxx" -#include <unotools/configmgr.hxx> +#include <comphelper/configuration.hxx> #include <document.hxx> #include <docsh.hxx> #include <global.hxx> @@ -70,7 +70,7 @@ public: virtual void setUp() override { - utl::ConfigManager::EnableFuzzing(); + comphelper::EnableFuzzing(); ScDLL::Init(); ScGlobal::Init(); } diff --git a/sc/source/core/data/documen2.cxx b/sc/source/core/data/documen2.cxx index 026b2e1b9956..6e81648350c6 100644 --- a/sc/source/core/data/documen2.cxx +++ b/sc/source/core/data/documen2.cxx @@ -36,7 +36,7 @@ #include <comphelper/threadpool.hxx> #include <sal/log.hxx> #include <osl/diagnose.h> -#include <unotools/configmgr.hxx> +#include <comphelper/configuration.hxx> #include <scmod.hxx> #include <document.hxx> @@ -222,7 +222,7 @@ ScDocument::ScDocument( ScDocumentMode eMode, ScDocShell* pDocShell ) : if ( eMode == SCDOCMODE_DOCUMENT || eMode == SCDOCMODE_FUNCTIONACCESS ) { mxPoolHelper = new ScPoolHelper( *this ); - if (!utl::ConfigManager::IsFuzzing()) //just too slow + if (!comphelper::IsFuzzing()) //just too slow pBASM.reset( new ScBroadcastAreaSlotMachine( this ) ); pChartListenerCollection.reset( new ScChartListenerCollection( *this ) ); pRefreshTimerControl.reset( new ScRefreshTimerControl ); diff --git a/sc/source/core/data/documen4.cxx b/sc/source/core/data/documen4.cxx index e62956771cb7..08dfb6aefc49 100644 --- a/sc/source/core/data/documen4.cxx +++ b/sc/source/core/data/documen4.cxx @@ -22,7 +22,7 @@ #include <svl/zformat.hxx> #include <formula/token.hxx> #include <sal/log.hxx> -#include <unotools/configmgr.hxx> +#include <comphelper/configuration.hxx> #include <osl/diagnose.h> #include <o3tl/string_view.hxx> @@ -273,7 +273,7 @@ void ScDocument::InsertMatrixFormula(SCCOL nCol1, SCROW nRow1, SAL_WARN("sc", "ScDocument::InsertMatrixFormula: No table marked"); return; } - if (utl::ConfigManager::IsFuzzing()) + if (comphelper::IsFuzzing()) { // just too slow if (nCol2 - nCol1 > 64) diff --git a/sc/source/core/data/documentimport.cxx b/sc/source/core/data/documentimport.cxx index a6c25a1bd5ec..b2e823c4a511 100644 --- a/sc/source/core/data/documentimport.cxx +++ b/sc/source/core/data/documentimport.cxx @@ -28,7 +28,7 @@ #include <o3tl/safeint.hxx> #include <svl/sharedstringpool.hxx> #include <svl/languageoptions.hxx> -#include <unotools/configmgr.hxx> +#include <comphelper/configuration.hxx> #include <unordered_map> namespace { @@ -61,7 +61,7 @@ struct ScDocumentImportImpl mrDoc(rDoc), maListenCxt(rDoc), mnDefaultScriptNumeric(SvtScriptType::UNKNOWN), - mbFuzzing(utl::ConfigManager::IsFuzzing()) + mbFuzzing(comphelper::IsFuzzing()) {} bool isValid( size_t nTab, size_t nCol ) @@ -411,7 +411,7 @@ void ScDocumentImport::setMatrixCells( if (!pBlockPos) return; - if (utl::ConfigManager::IsFuzzing()) //just too slow + if (comphelper::IsFuzzing()) //just too slow return; sc::CellStoreType& rCells = pTab->aCol[rBasePos.Col()].maCells; diff --git a/sc/source/core/data/global2.cxx b/sc/source/core/data/global2.cxx index 6f8352fd1862..60c0f02dede2 100644 --- a/sc/source/core/data/global2.cxx +++ b/sc/source/core/data/global2.cxx @@ -19,7 +19,7 @@ #include <sfx2/docfile.hxx> #include <sfx2/objsh.hxx> -#include <unotools/configmgr.hxx> +#include <comphelper/configuration.hxx> #include <unotools/pathoptions.hxx> #include <tools/urlobj.hxx> #include <svl/numformat.hxx> @@ -291,7 +291,7 @@ OUString ScGlobal::GetAbsDocName( const OUString& rFileName, if (!pShell || !pShell->HasName()) { // maybe relative to document path working directory INetURLObject aObj; - if (!utl::ConfigManager::IsFuzzing()) + if (!comphelper::IsFuzzing()) { aObj.SetSmartURL(SvtPathOptions().GetWorkPath()); aObj.setFinalSlash(); // it IS a path diff --git a/sc/source/core/data/globalx.cxx b/sc/source/core/data/globalx.cxx index 56d48e039bad..1fac6e9c11b4 100644 --- a/sc/source/core/data/globalx.cxx +++ b/sc/source/core/data/globalx.cxx @@ -32,7 +32,7 @@ #include <com/sun/star/i18n/OrdinalSuffix.hpp> #include <comphelper/processfactory.hxx> -#include <unotools/configmgr.hxx> +#include <comphelper/configuration.hxx> #include <unotools/localedatawrapper.hxx> namespace com::sun::star::ucb { class XCommandEnvironment; } @@ -43,7 +43,7 @@ using namespace ::com::sun::star::ucb; void ScGlobal::InitAddIns() { - if (utl::ConfigManager::IsFuzzing()) + if (comphelper::IsFuzzing()) return; // multi paths separated by semicolons diff --git a/sc/source/core/tool/calcconfig.cxx b/sc/source/core/tool/calcconfig.cxx index 7eb36d73a97c..58dc1b7c747e 100644 --- a/sc/source/core/tool/calcconfig.cxx +++ b/sc/source/core/tool/calcconfig.cxx @@ -14,7 +14,7 @@ #include <formula/opcode.hxx> #include <rtl/ustring.hxx> #include <sal/log.hxx> -#include <unotools/configmgr.hxx> +#include <comphelper/configuration.hxx> #include <calcconfig.hxx> @@ -68,7 +68,7 @@ ForceCalculationType ScCalcConfig::getForceCalculationType() bool ScCalcConfig::isOpenCLEnabled() { - if (utl::ConfigManager::IsFuzzing()) + if (comphelper::IsFuzzing()) return false; static ForceCalculationType force = getForceCalculationType(); if( force != ForceCalculationNone ) @@ -79,7 +79,7 @@ bool ScCalcConfig::isOpenCLEnabled() bool ScCalcConfig::isThreadingEnabled() { - if (utl::ConfigManager::IsFuzzing()) + if (comphelper::IsFuzzing()) return false; static ForceCalculationType force = getForceCalculationType(); if( force != ForceCalculationNone ) diff --git a/sc/source/core/tool/compiler.cxx b/sc/source/core/tool/compiler.cxx index 63b1f0969225..f144b8bf29bb 100644 --- a/sc/source/core/tool/compiler.cxx +++ b/sc/source/core/tool/compiler.cxx @@ -4450,7 +4450,7 @@ bool ScCompiler::NextNewToken( bool bInArray ) if ( cSymbol[0] < 128 ) { bMayBeFuncName = rtl::isAsciiAlpha( cSymbol[0] ); - if (!bMayBeFuncName && (cSymbol[0] == '_' && cSymbol[1] == '_') && !utl::ConfigManager::IsFuzzing()) + if (!bMayBeFuncName && (cSymbol[0] == '_' && cSymbol[1] == '_') && !comphelper::IsFuzzing()) { bMayBeFuncName = officecfg::Office::Common::Misc::ExperimentalMode::get(); } diff --git a/sc/source/core/tool/optutil.cxx b/sc/source/core/tool/optutil.cxx index 8f3e1fec9d93..e541d40ccf9f 100644 --- a/sc/source/core/tool/optutil.cxx +++ b/sc/source/core/tool/optutil.cxx @@ -19,12 +19,12 @@ #include <optutil.hxx> #include <global.hxx> -#include <unotools/configmgr.hxx> +#include <comphelper/configuration.hxx> #include <unotools/localedatawrapper.hxx> bool ScOptionsUtil::IsMetricSystem() { - if (utl::ConfigManager::IsFuzzing()) + if (comphelper::IsFuzzing()) return true; //TODO: which language should be used here - system language or installed office language? diff --git a/sc/source/filter/excel/impop.cxx b/sc/source/filter/excel/impop.cxx index 3262586c14cb..163e10b66d55 100644 --- a/sc/source/filter/excel/impop.cxx +++ b/sc/source/filter/excel/impop.cxx @@ -28,7 +28,7 @@ #include <sfx2/docfile.hxx> #include <svx/svxids.hrc> #include <svl/numformat.hxx> -#include <unotools/configmgr.hxx> +#include <comphelper/configuration.hxx> #include <sal/log.hxx> #include <sfx2/objsh.hxx> @@ -97,7 +97,7 @@ ImportExcel::ImportExcel( XclImpRootData& rImpData, SvStream& rStrm ): mnLastRecId(0), mbBiff2HasXfs(false), mbBiff2HasXfsValid(false), - mbFuzzing(utl::ConfigManager::IsFuzzing()) + mbFuzzing(comphelper::IsFuzzing()) { nBdshtTab = 0; diff --git a/sc/source/filter/excel/read.cxx b/sc/source/filter/excel/read.cxx index ad580407295e..708aa7a34df1 100644 --- a/sc/source/filter/excel/read.cxx +++ b/sc/source/filter/excel/read.cxx @@ -42,7 +42,7 @@ #include <imp_op.hxx> #include <excimp8.hxx> -#include <unotools/configmgr.hxx> +#include <comphelper/configuration.hxx> #include <memory> @@ -776,7 +776,7 @@ ErrCode ImportExcel::Read() pProgress.reset(); GetDocImport().finalize(); - if (!utl::ConfigManager::IsFuzzing()) + if (!comphelper::IsFuzzing()) AdjustRowHeight(); PostDocLoad(); diff --git a/sc/source/filter/excel/xicontent.cxx b/sc/source/filter/excel/xicontent.cxx index 014ada4d9490..319cd8136aae 100644 --- a/sc/source/filter/excel/xicontent.cxx +++ b/sc/source/filter/excel/xicontent.cxx @@ -32,7 +32,7 @@ #include <editeng/flditem.hxx> #include <editeng/editobj.hxx> #include <unotools/charclass.hxx> -#include <unotools/configmgr.hxx> +#include <comphelper/configuration.hxx> #include <stringutil.hxx> #include <cellform.hxx> #include <cellvalue.hxx> @@ -422,7 +422,7 @@ void XclImpHyperlink::InsertUrl( XclImpRoot& rRoot, const XclRange& rXclRange, c SCROW nScRow1, nScRow2; aScRange.GetVars( nScCol1, nScRow1, nScTab, nScCol2, nScRow2, nScTab ); - if (utl::ConfigManager::IsFuzzing()) + if (comphelper::IsFuzzing()) { SCROW nRows = nScRow2 - nScRow1; if (nRows > 1024) @@ -933,7 +933,7 @@ void XclImpValidationManager::ReadDV( XclImpStream& rStrm ) void XclImpValidationManager::Apply() { - const bool bFuzzing = utl::ConfigManager::IsFuzzing(); + const bool bFuzzing = comphelper::IsFuzzing(); size_t nPatterns = 0; ScDocument& rDoc = GetRoot().GetDoc(); diff --git a/sc/source/filter/excel/xiescher.cxx b/sc/source/filter/excel/xiescher.cxx index 62e35213a045..df2baef3468b 100644 --- a/sc/source/filter/excel/xiescher.cxx +++ b/sc/source/filter/excel/xiescher.cxx @@ -43,7 +43,7 @@ #include <sfx2/objsh.hxx> #include <unotools/moduleoptions.hxx> -#include <unotools/configmgr.hxx> +#include <comphelper/configuration.hxx> #include <unotools/fltrcfg.hxx> #include <vcl/dibtools.hxx> #include <vcl/gdimtf.hxx> @@ -1511,7 +1511,7 @@ void XclImpTextObj::DoPreProcessSdrObj( XclImpDffConverter& rDffConv, SdrObject& { if( maTextData.mxString->IsRich() ) { - if (maTextData.mxString->GetText().getLength() > 1024 && utl::ConfigManager::IsFuzzing()) + if (maTextData.mxString->GetText().getLength() > 1024 && comphelper::IsFuzzing()) { SAL_WARN("sc.filter", "truncating slow long rich text for fuzzing performance"); maTextData.mxString->SetText(maTextData.mxString->GetText().copy(0, 1024)); diff --git a/sc/source/filter/excel/xipage.cxx b/sc/source/filter/excel/xipage.cxx index c06308ba78c6..29f9db99c854 100644 --- a/sc/source/filter/excel/xipage.cxx +++ b/sc/source/filter/excel/xipage.cxx @@ -28,7 +28,7 @@ #include <editeng/lrspitem.hxx> #include <editeng/ulspitem.hxx> #include <editeng/brushitem.hxx> -#include <unotools/configmgr.hxx> +#include <comphelper/configuration.hxx> #include <document.hxx> #include <stlsheet.hxx> #include <attrib.hxx> @@ -125,7 +125,7 @@ void XclImpPageSettings::ReadHeaderFooter( XclImpStream& rStrm ) default: OSL_FAIL( "XclImpPageSettings::ReadHeaderFooter - unknown record" ); } - if (utl::ConfigManager::IsFuzzing()) + if (comphelper::IsFuzzing()) { if (maData.maHeader.getLength() > 10) maData.maHeader = maData.maHeader.copy(0, 10); diff --git a/sc/source/filter/excel/xipivot.cxx b/sc/source/filter/excel/xipivot.cxx index ac3ebaa96b7f..12b86f679604 100644 --- a/sc/source/filter/excel/xipivot.cxx +++ b/sc/source/filter/excel/xipivot.cxx @@ -30,7 +30,7 @@ #include <svl/numformat.hxx> #include <sal/log.hxx> #include <sot/storage.hxx> -#include <unotools/configmgr.hxx> +#include <comphelper/configuration.hxx> #include <document.hxx> #include <formulacell.hxx> @@ -1411,7 +1411,7 @@ void XclImpPivotTable::Convert() if( !mxPCache || !mxPCache->IsValid() ) return; - if (utl::ConfigManager::IsFuzzing()) //just too slow + if (comphelper::IsFuzzing()) //just too slow return; ScDPSaveData aSaveData; diff --git a/sc/source/filter/excel/xlroot.cxx b/sc/source/filter/excel/xlroot.cxx index c26529e7fe2d..97e9cbffb385 100644 --- a/sc/source/filter/excel/xlroot.cxx +++ b/sc/source/filter/excel/xlroot.cxx @@ -59,7 +59,7 @@ #include <xlchart.hxx> #include <xltracer.hxx> #include <xltools.hxx> -#include <unotools/configmgr.hxx> +#include <comphelper/configuration.hxx> #include <unotools/useroptions.hxx> #include <root.hxx> @@ -109,7 +109,7 @@ XclRootData::XclRootData( XclBiff eBiff, SfxMedium& rMedium, mnScTab( 0 ), mbExport( bExport ) { - if (!utl::ConfigManager::IsFuzzing()) + if (!comphelper::IsFuzzing()) maUserName = SvtUserOptions().GetLastName(); if (maUserName.isEmpty()) maUserName = "Calc"; diff --git a/sc/source/filter/lotus/op.cxx b/sc/source/filter/lotus/op.cxx index c1f11736e8f3..f85b7ef5b639 100644 --- a/sc/source/filter/lotus/op.cxx +++ b/sc/source/filter/lotus/op.cxx @@ -29,7 +29,7 @@ #include <editeng/udlnitem.hxx> #include <editeng/wghtitem.hxx> #include <editeng/justifyitem.hxx> -#include <unotools/configmgr.hxx> +#include <comphelper/configuration.hxx> #include <formulacell.hxx> #include <document.hxx> @@ -327,7 +327,7 @@ void OP_Window1(LotusContext& rContext, SvStream& r, sal_uInt16 n) nDefWidth = static_cast<sal_uInt16>( TWIPS_PER_CHAR * nDefWidth ); - const bool bFuzzing = utl::ConfigManager::IsFuzzing(); + const bool bFuzzing = comphelper::IsFuzzing(); // instead of default, set all Cols in SC by hand for (SCCOL nCol = 0 ; nCol <= rContext.rDoc.MaxCol() ; nCol++) diff --git a/sc/source/filter/qpro/qpro.cxx b/sc/source/filter/qpro/qpro.cxx index 5ee451af9aef..4097ad1ce57c 100644 --- a/sc/source/filter/qpro/qpro.cxx +++ b/sc/source/filter/qpro/qpro.cxx @@ -29,7 +29,7 @@ #include <document.hxx> #include <formulacell.hxx> #include <tools/stream.hxx> -#include <unotools/configmgr.hxx> +#include <comphelper/configuration.hxx> #include <docoptio.hxx> #include <scdll.hxx> #include <memory> @@ -155,7 +155,7 @@ ScQProReader::ScQProReader(SvStream* pStream) , mnOffset(0) , mpStream(pStream) , mbEndOfFile(false) - , mnMaxTab(utl::ConfigManager::IsFuzzing() ? 128 : MAXTAB) + , mnMaxTab(comphelper::IsFuzzing() ? 128 : MAXTAB) { if( mpStream ) { diff --git a/sc/source/filter/rtf/eeimpars.cxx b/sc/source/filter/rtf/eeimpars.cxx index 446f6850f4da..a2eca4858c2b 100644 --- a/sc/source/filter/rtf/eeimpars.cxx +++ b/sc/source/filter/rtf/eeimpars.cxx @@ -138,7 +138,7 @@ void ScEEImport::WriteToDocument( bool bSizeColsRows, double nOutputFactor, SvNu if (!pFormatter) pFormatter = mpDoc->GetFormatTable(); bool bNumbersEnglishUS = false; - if (pFormatter->GetLanguage() == LANGUAGE_SYSTEM && !utl::ConfigManager::IsFuzzing()) + if (pFormatter->GetLanguage() == LANGUAGE_SYSTEM && !comphelper::IsFuzzing()) { // Automatic language option selected. Check for the global 'use US English' option. bNumbersEnglishUS = officecfg::Office::Common::Filter::HTML::Import::NumbersEnglishUS::get(); diff --git a/sc/source/filter/xml/xmlrowi.cxx b/sc/source/filter/xml/xmlrowi.cxx index 82f58d1f3c40..418142d79caa 100644 --- a/sc/source/filter/xml/xmlrowi.cxx +++ b/sc/source/filter/xml/xmlrowi.cxx @@ -30,7 +30,7 @@ #include <unonames.hxx> #include <comphelper/extract.hxx> -#include <unotools/configmgr.hxx> +#include <comphelper/configuration.hxx> #include <xmloff/xmlnamespace.hxx> #include <xmloff/families.hxx> #include <xmloff/xmltoken.hxx> @@ -74,7 +74,7 @@ ScXMLTableRowContext::ScXMLTableRowContext( ScXMLImport& rImport, { nRepeatedRows = std::max( it.toInt32(), sal_Int32(1) ); nRepeatedRows = std::min( nRepeatedRows, rImport.GetDocument()->GetSheetLimits().GetMaxRowCount() ); - if (utl::ConfigManager::IsFuzzing()) + if (comphelper::IsFuzzing()) nRepeatedRows = std::min(nRepeatedRows, sal_Int32(1024)); } break; diff --git a/sc/source/ui/docshell/docsh2.cxx b/sc/source/ui/docshell/docsh2.cxx index 5a8d161ff245..c414bb34badd 100644 --- a/sc/source/ui/docshell/docsh2.cxx +++ b/sc/source/ui/docshell/docsh2.cxx @@ -24,7 +24,7 @@ #include <editeng/forbiddencharacterstable.hxx> #include <orcusfilters.hxx> #include <config_folders.h> -#include <unotools/configmgr.hxx> +#include <comphelper/configuration.hxx> #include <comphelper/processfactory.hxx> #include <o3tl/unit_conversion.hxx> @@ -111,13 +111,13 @@ void ScDocShell::InitItems() // Other modifications after creation of the DrawLayer pDrawLayer->SetNotifyUndoActionHdl( std::bind( &ScDocFunc::NotifyDrawUndo, m_pDocFunc.get(), std::placeholders::_1 ) ); } - else if (!utl::ConfigManager::IsFuzzing()) + else if (!comphelper::IsFuzzing()) { // always use global color table instead of local copy PutItem( SvxColorListItem( XColorList::GetStdColorList(), SID_COLOR_TABLE ) ); } - if (utl::ConfigManager::IsFuzzing() || + if (comphelper::IsFuzzing() || (m_pDocument->GetForbiddenCharacters() && m_pDocument->IsValidAsianCompression() && m_pDocument->IsValidAsianKerning())) return; diff --git a/sc/source/ui/docshell/docsh3.cxx b/sc/source/ui/docshell/docsh3.cxx index 7cc56770c113..72cd7b001c0e 100644 --- a/sc/source/ui/docshell/docsh3.cxx +++ b/sc/source/ui/docshell/docsh3.cxx @@ -419,7 +419,7 @@ void ScDocShell::InitOptions(bool bForLoading) // called from InitNew and L ScViewOptions aViewOpt = pScMod->GetViewOptions(); aDocOpt.SetAutoSpell( bAutoSpell ); - if (!utl::ConfigManager::IsFuzzing()) + if (!comphelper::IsFuzzing()) { // two-digit year entry from Tools->Options->General aDocOpt.SetYear2000(officecfg::Office::Common::DateFormat::TwoDigitYear::get()); diff --git a/sc/source/ui/docshell/externalrefmgr.cxx b/sc/source/ui/docshell/externalrefmgr.cxx index 01476aababe0..799999050cdf 100644 --- a/sc/source/ui/docshell/externalrefmgr.cxx +++ b/sc/source/ui/docshell/externalrefmgr.cxx @@ -52,7 +52,7 @@ #include <sfx2/linkmgr.hxx> #include <tools/urlobj.hxx> #include <unotools/charclass.hxx> -#include <unotools/configmgr.hxx> +#include <comphelper/configuration.hxx> #include <unotools/ucbhelper.hxx> #include <vcl/svapp.hxx> #include <vcl/weld.hxx> @@ -2761,7 +2761,7 @@ void ScExternalRefManager::maybeCreateRealFileName(sal_uInt16 nFileId) OUString ScExternalRefManager::getOwnDocumentName() const { - if (utl::ConfigManager::IsFuzzing()) + if (comphelper::IsFuzzing()) return "file:///tmp/document"; ScDocShell* pShell = mrDoc.GetDocumentShell(); diff --git a/sc/source/ui/docshell/impex.cxx b/sc/source/ui/docshell/impex.cxx index bc87bdb4ba4e..32bb5b36b20d 100644 --- a/sc/source/ui/docshell/impex.cxx +++ b/sc/source/ui/docshell/impex.cxx @@ -58,7 +58,7 @@ #include <scresid.hxx> #include <o3tl/safeint.hxx> #include <tools/svlibrary.h> -#include <unotools/configmgr.hxx> +#include <comphelper/configuration.hxx> #include <vcl/svapp.hxx> #include <vcl/weld.hxx> #include <editeng/editobj.hxx> @@ -102,7 +102,7 @@ enum class SylkVersion // Whole document without Undo ScImportExport::ScImportExport( ScDocument& r ) : pDocSh( r.GetDocumentShell() ), rDoc( r ), - nSizeLimit( 0 ), nMaxImportRow(!utl::ConfigManager::IsFuzzing() ? rDoc.MaxRow() : SCROWS32K), + nSizeLimit( 0 ), nMaxImportRow(!comphelper::IsFuzzing() ? rDoc.MaxRow() : SCROWS32K), cSep( '\t' ), cStr( '"' ), bFormulas( false ), bIncludeFiltered( true ), bAll( true ), bSingle( true ), bUndo( false ), @@ -117,7 +117,7 @@ ScImportExport::ScImportExport( ScDocument& r ) ScImportExport::ScImportExport( ScDocument& r, const ScAddress& rPt ) : pDocSh( r.GetDocumentShell() ), rDoc( r ), aRange( rPt ), - nSizeLimit( 0 ), nMaxImportRow(!utl::ConfigManager::IsFuzzing() ? rDoc.MaxRow() : SCROWS32K), + nSizeLimit( 0 ), nMaxImportRow(!comphelper::IsFuzzing() ? rDoc.MaxRow() : SCROWS32K), cSep( '\t' ), cStr( '"' ), bFormulas( false ), bIncludeFiltered( true ), bAll( false ), bSingle( true ), bUndo( pDocSh != nullptr ), @@ -133,7 +133,7 @@ ScImportExport::ScImportExport( ScDocument& r, const ScAddress& rPt ) ScImportExport::ScImportExport( ScDocument& r, const ScRange& rRange ) : pDocSh( r.GetDocumentShell() ), rDoc( r ), aRange( rRange ), - nSizeLimit( 0 ), nMaxImportRow(!utl::ConfigManager::IsFuzzing() ? rDoc.MaxRow() : SCROWS32K), + nSizeLimit( 0 ), nMaxImportRow(!comphelper::IsFuzzing() ? rDoc.MaxRow() : SCROWS32K), cSep( '\t' ), cStr( '"' ), bFormulas( false ), bIncludeFiltered( true ), bAll( false ), bSingle( false ), bUndo( pDocSh != nullptr ), @@ -150,7 +150,7 @@ ScImportExport::ScImportExport( ScDocument& r, const ScRange& rRange ) // If a View exists, the TabNo of the view will be used. ScImportExport::ScImportExport( ScDocument& r, const OUString& rPos ) : pDocSh( r.GetDocumentShell() ), rDoc( r ), - nSizeLimit( 0 ), nMaxImportRow(!utl::ConfigManager::IsFuzzing() ? rDoc.MaxRow() : SCROWS32K), + nSizeLimit( 0 ), nMaxImportRow(!comphelper::IsFuzzing() ? rDoc.MaxRow() : SCROWS32K), cSep( '\t' ), cStr( '"' ), bFormulas( false ), bIncludeFiltered( true ), bAll( false ), bSingle( true ), bUndo( pDocSh != nullptr ), @@ -2304,7 +2304,7 @@ bool ScImportExport::Sylk2Doc( SvStream& rStrm ) sal_uInt32 nKey; sal_Int32 nCheckPos; - if (aCode.getLength() > 2048 && utl::ConfigManager::IsFuzzing()) + if (aCode.getLength() > 2048 && comphelper::IsFuzzing()) { // consider an excessive length as a failure when fuzzing nCheckPos = 1; diff --git a/sc/source/ui/docshell/tablink.cxx b/sc/source/ui/docshell/tablink.cxx index affcbb5c7fb8..5a20b1c94075 100644 --- a/sc/source/ui/docshell/tablink.cxx +++ b/sc/source/ui/docshell/tablink.cxx @@ -34,7 +34,7 @@ #include <vcl/weld.hxx> #include <tools/urlobj.hxx> #include <unotools/transliterationwrapper.hxx> -#include <unotools/configmgr.hxx> +#include <comphelper/configuration.hxx> #include <comphelper/processfactory.hxx> #include <tablink.hxx> @@ -433,7 +433,7 @@ bool ScDocumentLoader::GetFilterName( const OUString& rFileName, std::shared_ptr<const SfxFilter> pSfxFilter; auto pMedium = std::make_unique<SfxMedium>( rFileName, StreamMode::STD_READ ); - if (pMedium->GetErrorIgnoreWarning() == ERRCODE_NONE && !utl::ConfigManager::IsFuzzing()) + if (pMedium->GetErrorIgnoreWarning() == ERRCODE_NONE && !comphelper::IsFuzzing()) { if ( bWithInteraction ) pMedium->UseInteractionHandler(true); // #i73992# no longer called from GuessFilter diff --git a/sc/source/ui/view/drawvie3.cxx b/sc/source/ui/view/drawvie3.cxx index 5581a69e7961..ec1d431eeae9 100644 --- a/sc/source/ui/view/drawvie3.cxx +++ b/sc/source/ui/view/drawvie3.cxx @@ -53,10 +53,10 @@ ScDrawView::ScDrawView( { SetNegativeX(comphelper::LibreOfficeKit::isActive() && rDoc.IsLayoutRTL(nTab)); // #i73602# Use default from the configuration - SetBufferedOverlayAllowed(!utl::ConfigManager::IsFuzzing() && officecfg::Office::Common::Drawinglayer::OverlayBuffer_Calc::get()); + SetBufferedOverlayAllowed(!comphelper::IsFuzzing() && officecfg::Office::Common::Drawinglayer::OverlayBuffer_Calc::get()); // #i74769#, #i75172# Use default from the configuration - SetBufferedOutputAllowed(!utl::ConfigManager::IsFuzzing() && officecfg::Office::Common::Drawinglayer::PaintBuffer_Calc::get()); + SetBufferedOutputAllowed(!comphelper::IsFuzzing() && officecfg::Office::Common::Drawinglayer::PaintBuffer_Calc::get()); Construct(); } |