diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2016-12-14 09:49:39 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2016-12-15 06:45:14 +0000 |
commit | d15b4e204598fc7e4c1682c4f10228e217575937 (patch) | |
tree | 1173b2725abac5f06bfd2e28965a95256283e6a4 /svtools | |
parent | 14a0d26d6ae0ee59a685c254ec235fea81636475 (diff) |
teach sallogareas plugin to catch inconsistencies
Change-Id: I8bcea5ffc74d48148bea78da8c17744e288c069a
Reviewed-on: https://gerrit.libreoffice.org/32004
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'svtools')
-rw-r--r-- | svtools/source/config/accessibilityoptions.cxx | 8 | ||||
-rw-r--r-- | svtools/source/contnr/fileview.cxx | 6 | ||||
-rw-r--r-- | svtools/source/contnr/treelistbox.cxx | 2 |
3 files changed, 8 insertions, 8 deletions
diff --git a/svtools/source/config/accessibilityoptions.cxx b/svtools/source/config/accessibilityoptions.cxx index 95f82913fd12..2dbb8362e82b 100644 --- a/svtools/source/config/accessibilityoptions.cxx +++ b/svtools/source/config/accessibilityoptions.cxx @@ -242,7 +242,7 @@ sal_Int16 SvtAccessibilityOptions_Impl::GetEdgeBlending() const } catch(const css::uno::Exception& ex) { - SAL_WARN("svtools", "Caught unexpected: " << ex.Message); + SAL_WARN("svtools.config", "Caught unexpected: " << ex.Message); } return nRet; @@ -260,7 +260,7 @@ sal_Int16 SvtAccessibilityOptions_Impl::GetListBoxMaximumLineCount() const } catch(const css::uno::Exception& ex) { - SAL_WARN("svtools", "Caught unexpected: " << ex.Message); + SAL_WARN("svtools.config", "Caught unexpected: " << ex.Message); } return nRet; @@ -278,7 +278,7 @@ sal_Int16 SvtAccessibilityOptions_Impl::GetColorValueSetColumnCount() const } catch(const css::uno::Exception& ex) { - SAL_WARN("svtools", "Caught unexpected: " << ex.Message); + SAL_WARN("svtools.config", "Caught unexpected: " << ex.Message); } return nRet; @@ -296,7 +296,7 @@ bool SvtAccessibilityOptions_Impl::GetPreviewUsesCheckeredBackground() const } catch(const css::uno::Exception& ex) { - SAL_WARN("svtools", "Caught unexpected: " << ex.Message); + SAL_WARN("svtools.config", "Caught unexpected: " << ex.Message); } return bRet; diff --git a/svtools/source/contnr/fileview.cxx b/svtools/source/contnr/fileview.cxx index 218d0b53b8a3..9c1e990b1f0c 100644 --- a/svtools/source/contnr/fileview.cxx +++ b/svtools/source/contnr/fileview.cxx @@ -942,12 +942,12 @@ bool ViewTabListBox_Impl::Kill( const OUString& rContent ) } catch( css::ucb::CommandAbortedException const & ) { - SAL_INFO( "svtools", "CommandAbortedException" ); + SAL_INFO( "svtools.contnr", "CommandAbortedException" ); bRet = false; } catch( Exception const & ) { - SAL_INFO( "svtools", "Any other exception" ); + SAL_INFO( "svtools.contnr", "Any other exception" ); bRet = false; } @@ -2038,7 +2038,7 @@ bool CompareSortingData_Impl( SortingData_Impl* const aOne, SortingData_Impl* co bEqual = true; break; default: - SAL_INFO( "svtools", "CompareSortingData_Impl: Compare unknown type!" ); + SAL_INFO( "svtools.contnr", "CompareSortingData_Impl: Compare unknown type!" ); bRet = false; } } diff --git a/svtools/source/contnr/treelistbox.cxx b/svtools/source/contnr/treelistbox.cxx index 67d8e95ea21a..215661b71c50 100644 --- a/svtools/source/contnr/treelistbox.cxx +++ b/svtools/source/contnr/treelistbox.cxx @@ -3656,7 +3656,7 @@ VclPtr<PopupMenu> SvTreeListBox::CreateContextMenu() void SvTreeListBox::ExecuteContextMenuAction( sal_uInt16 ) { - SAL_INFO( "svtools", "SvTreeListBox::ExecuteContextMenuAction(): now there's happening nothing!" ); + SAL_INFO( "svtools.contnr", "SvTreeListBox::ExecuteContextMenuAction(): now there's happening nothing!" ); } void SvTreeListBox::EnableContextMenuHandling() |