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 /sw/source/uibase/app/docshdrw.cxx | |
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 'sw/source/uibase/app/docshdrw.cxx')
-rw-r--r-- | sw/source/uibase/app/docshdrw.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sw/source/uibase/app/docshdrw.cxx b/sw/source/uibase/app/docshdrw.cxx index f767191fbd10..7d4353805ec9 100644 --- a/sw/source/uibase/app/docshdrw.cxx +++ b/sw/source/uibase/app/docshdrw.cxx @@ -21,7 +21,7 @@ #include <svx/drawitem.hxx> #include <svx/svdoutl.hxx> #include <svx/xtable.hxx> -#include <unotools/configmgr.hxx> +#include <comphelper/configuration.hxx> #include <docsh.hxx> #include <drawdoc.hxx> #include <swtypes.hxx> @@ -64,7 +64,7 @@ void InitDrawModelAndDocShell(SwDocShell* pSwDocShell, SwDrawModel* pSwDrawDocum { pSwDocShell->PutItem(SvxColorListItem(xColorList, SID_COLOR_TABLE)); } - else if (!utl::ConfigManager::IsFuzzing()) + else if (!comphelper::IsFuzzing()) { // there wasn't one, get the standard and set to the // docshell and then to the drawdocument |