[Libreoffice-commits] core.git: include/sal vcl/source
Caolán McNamara
caolanm at redhat.com
Tue Nov 12 07:31:32 PST 2013
include/sal/log-areas.dox | 1 -
vcl/source/filter/graphicfilter.cxx | 10 +++++-----
vcl/source/filter/wmf/enhwmf.cxx | 2 +-
vcl/source/filter/wmf/winwmf.cxx | 4 ++--
4 files changed, 8 insertions(+), 9 deletions(-)
New commits:
commit 2af31d84ad6eb6d02c02e013418b1a77037f966a
Author: Caolán McNamara <caolanm at redhat.com>
Date: Tue Nov 12 15:30:16 2013 +0000
svtools.filter -> vcl.filter
Change-Id: I26bbef9cadd890728f685053230e12408be3557e
diff --git a/include/sal/log-areas.dox b/include/sal/log-areas.dox
index e85a498..73f88094a 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
- at 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 6229a77..dfebd37 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 be4e8f6..2e79081 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 7796a90..ff97d10 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();
More information about the Libreoffice-commits
mailing list