From 9cb2962197b592a9b93dac2ea8b8f3652cb5fbcb Mon Sep 17 00:00:00 2001 From: Caolán McNamara Date: Wed, 8 Nov 2017 15:47:50 +0000 Subject: rename AvoidConfig to Fuzzing MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit cause that's what its really used for and a couple of cases are not specifically about avoiding config but avoiding uninteresting disk acccess and what not Change-Id: I4c6454f98388579fcd0bf9798321d30408ab65ee Reviewed-on: https://gerrit.libreoffice.org/44491 Tested-by: Jenkins Reviewed-by: Caolán McNamara Tested-by: Caolán McNamara --- include/unotools/configmgr.hxx | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'include/unotools') diff --git a/include/unotools/configmgr.hxx b/include/unotools/configmgr.hxx index fe6a13545ed0..fd2dbb2455c2 100644 --- a/include/unotools/configmgr.hxx +++ b/include/unotools/configmgr.hxx @@ -71,11 +71,11 @@ public: SAL_DLLPRIVATE void registerConfigItem(utl::ConfigItem * item); - // Avoid using the config layer and rely on defaults - // which is only useful for special test tool targets - // where start-up speed is of the essence - static bool IsAvoidConfig(); - static void EnableAvoidConfig(); + // Avoid using the config layer and rely on defaults which is only useful + // for special test tool targets (typically fuzzing) where start-up speed + // is of the essence + static bool IsFuzzing(); + static void EnableFuzzing(); private: -- cgit