diff options
author | Caolán McNamara <caolanm@redhat.com> | 2017-11-21 16:30:48 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2017-11-21 17:34:57 +0100 |
commit | beacf493dc4c8a62148ed75e959688d676ce0243 (patch) | |
tree | 4650edc2edc1f8d3ddf5ab4a6562a113a5bb40e9 | |
parent | 73644f2d4a6fce978221476e758ed88e294a904d (diff) |
silence warning
Change-Id: I22e37ed4be19a39c061015f81938ab2d854db9b5
Reviewed-on: https://gerrit.libreoffice.org/45042
Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Tested-by: Caolán McNamara <caolanm@redhat.com>
-rw-r--r-- | vcl/source/outdev/font.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/source/outdev/font.cxx b/vcl/source/outdev/font.cxx index 9a44a10fb469..382400fe4eaf 100644 --- a/vcl/source/outdev/font.cxx +++ b/vcl/source/outdev/font.cxx @@ -867,7 +867,7 @@ vcl::Font OutputDevice::GetDefaultFont( DefaultFontType nType, LanguageType eLan { if( !pOutDev ) { - SAL_WARN ("vcl.gdi", "No default window has been set for the application - we really shouldn't be able to get here"); + SAL_WARN_IF(!utl::ConfigManager::IsFuzzing(), "vcl.gdi", "No default window has been set for the application - we really shouldn't be able to get here"); sal_Int32 nIndex = 0; aFont.SetFamilyName( aSearch.getToken( 0, ';', nIndex ) ); } |