diff options
-rw-r--r-- | include/sal/log-areas.dox | 1 | ||||
-rw-r--r-- | vcl/source/filter/graphicfilter.cxx | 10 | ||||
-rw-r--r-- | vcl/source/filter/wmf/enhwmf.cxx | 2 | ||||
-rw-r--r-- | vcl/source/filter/wmf/winwmf.cxx | 4 |
4 files changed, 8 insertions, 9 deletions
diff --git a/include/sal/log-areas.dox b/include/sal/log-areas.dox index e85a4987077b..73f88094adb1 100644 --- a/include/sal/log-areas.dox +++ b/include/sal/log-areas.dox @@ -251,7 +251,6 @@ certain functionality. @li @c svtools.contnr @li @c svtools.control @li @c svtools.dialogs -@li @c svtools.filter @li @c svtools.misc @li @c svtools.table @li @c svtools.uno diff --git a/vcl/source/filter/graphicfilter.cxx b/vcl/source/filter/graphicfilter.cxx index 6229a77d56f5..dfebd3716e23 100644 --- a/vcl/source/filter/graphicfilter.cxx +++ b/vcl/source/filter/graphicfilter.cxx @@ -122,15 +122,15 @@ static bool DirEntryExists( const INetURLObject& rObj ) } catch(const css::ucb::CommandAbortedException&) { - SAL_WARN( "svtools.filter", "CommandAbortedException" ); + SAL_WARN( "vcl.filter", "CommandAbortedException" ); } catch(const css::ucb::ContentCreationException&) { - SAL_WARN( "svtools.filter", "ContentCreationException" ); + SAL_WARN( "vcl.filter", "ContentCreationException" ); } catch( ... ) { - SAL_WARN( "svtools.filter", "Any other exception" ); + SAL_WARN( "vcl.filter", "Any other exception" ); } return bExists; } @@ -148,11 +148,11 @@ static void KillDirEntry( const OUString& rMainUrl ) } catch(const css::ucb::CommandAbortedException&) { - SAL_WARN( "svtools.filter", "CommandAbortedException" ); + SAL_WARN( "vcl.filter", "CommandAbortedException" ); } catch( ... ) { - SAL_WARN( "svtools.filter", "Any other exception" ); + SAL_WARN( "vcl.filter", "Any other exception" ); } } diff --git a/vcl/source/filter/wmf/enhwmf.cxx b/vcl/source/filter/wmf/enhwmf.cxx index be4e8f633cca..2e790811a638 100644 --- a/vcl/source/filter/wmf/enhwmf.cxx +++ b/vcl/source/filter/wmf/enhwmf.cxx @@ -347,7 +347,7 @@ template <class T> Polygon EnhWMFReader::ReadPolygon(sal_uInt32 nStartIndex, sal_uInt32 nPoints) { bool bRecordOk = nPoints <= SAL_MAX_UINT16; - SAL_WARN_IF(!bRecordOk, "svtools.filter", "polygon record has more polygons than we can handle"); + SAL_WARN_IF(!bRecordOk, "vcl.filter", "polygon record has more polygons than we can handle"); if (!bRecordOk) return Polygon(); diff --git a/vcl/source/filter/wmf/winwmf.cxx b/vcl/source/filter/wmf/winwmf.cxx index 7796a9051757..ff97d106068b 100644 --- a/vcl/source/filter/wmf/winwmf.cxx +++ b/vcl/source/filter/wmf/winwmf.cxx @@ -372,7 +372,7 @@ void WMFReader::ReadRecordParams( sal_uInt16 nFunc ) nPoints += pnPoints[a]; } - SAL_WARN_IF(!bRecordOk, "svtools.filter", "polypolygon record has more polygons than we can handle"); + SAL_WARN_IF(!bRecordOk, "vcl.filter", "polypolygon record has more polygons than we can handle"); bRecordOk &= pWMF->good(); @@ -1375,7 +1375,7 @@ sal_Bool WMFReader::GetPlaceableBound( Rectangle& rPlaceableBound, SvStream* pSt nPoints += nP; } - SAL_WARN_IF(!bRecordOk, "svtools.filter", "polypolygon record has more polygons than we can handle"); + SAL_WARN_IF(!bRecordOk, "vcl.filter", "polypolygon record has more polygons than we can handle"); bRecordOk &= pStm->good(); |