summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2013-11-12 15:30:16 +0000
committerCaolán McNamara <caolanm@redhat.com>2013-11-12 15:30:53 +0000
commit2af31d84ad6eb6d02c02e013418b1a77037f966a (patch)
tree7997ed5a019dfb0a3e1cfdaa6af5b03b430a15eb /vcl
parentcdd351b1487a8a97f481a9165d9cd361aaee2ca4 (diff)
svtools.filter -> vcl.filter
Change-Id: I26bbef9cadd890728f685053230e12408be3557e
Diffstat (limited to 'vcl')
-rw-r--r--vcl/source/filter/graphicfilter.cxx10
-rw-r--r--vcl/source/filter/wmf/enhwmf.cxx2
-rw-r--r--vcl/source/filter/wmf/winwmf.cxx4
3 files changed, 8 insertions, 8 deletions
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();