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 /xmloff | |
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 'xmloff')
-rw-r--r-- | xmloff/source/core/DocumentSettingsContext.cxx | 2 | ||||
-rw-r--r-- | xmloff/source/draw/ximpstyl.cxx | 4 |
2 files changed, 3 insertions, 3 deletions
diff --git a/xmloff/source/core/DocumentSettingsContext.cxx b/xmloff/source/core/DocumentSettingsContext.cxx index 9886ac935eb1..615ed8fb7bf7 100644 --- a/xmloff/source/core/DocumentSettingsContext.cxx +++ b/xmloff/source/core/DocumentSettingsContext.cxx @@ -313,7 +313,7 @@ void XMLDocumentSettingsContext::endFastElement(sal_Int32 ) uno::Sequence<beans::PropertyValue> aSeqConfigProps; if ( maConfigProps >>= aSeqConfigProps ) { - if (!utl::ConfigManager::IsFuzzing() && !officecfg::Office::Common::Save::Document::LoadPrinter::get()) + if (!comphelper::IsFuzzing() && !officecfg::Office::Common::Save::Document::LoadPrinter::get()) { auto aSeqConfigPropsRange = asNonConstRange(aSeqConfigProps); sal_Int32 i = aSeqConfigProps.getLength() - 1; diff --git a/xmloff/source/draw/ximpstyl.cxx b/xmloff/source/draw/ximpstyl.cxx index 8e685447641e..a0281f2fcd6f 100644 --- a/xmloff/source/draw/ximpstyl.cxx +++ b/xmloff/source/draw/ximpstyl.cxx @@ -53,7 +53,7 @@ #include <xmloff/XMLGraphicsDefaultStyle.hxx> #include <XMLNumberStylesImport.hxx> #include <XMLThemeContext.hxx> -#include <unotools/configmgr.hxx> +#include <comphelper/configuration.hxx> #include <xmloff/xmlerror.hxx> #include <xmloff/table/XMLTableImport.hxx> #include <comphelper/sequenceashashmap.hxx> @@ -1339,7 +1339,7 @@ css::uno::Reference< css::xml::sax::XFastContextHandler > SdXMLMasterStylesConte if (nNewMasterPageCount + 1 > nMasterPageCount) { // arbitrary limit to master pages when fuzzing to avoid deadend timeouts - if (nMasterPageCount >= 64 && utl::ConfigManager::IsFuzzing()) + if (nMasterPageCount >= 64 && comphelper::IsFuzzing()) return nullptr; // new page, create and insert |