diff options
author | Michael Stahl <mstahl@redhat.com> | 2013-07-08 18:44:42 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2013-07-08 18:47:25 +0200 |
commit | d38cb53e3bcf3fd95a75e03b01c3b7a209d07b46 (patch) | |
tree | 9680b59e62e70a66f4763482dc6b6b6e2dae0932 /sfx2/source/doc/oleprops.cxx | |
parent | 969bc572441ef8fd43cd7d350a533ffd715b74d3 (diff) |
rename sfx2 log area to sfx
not like there never was a sfx1 anyway... perhaps we should rename the
whole module...
Change-Id: I50c7302f84f15a1d778eca19507694a3bd070b22
Diffstat (limited to 'sfx2/source/doc/oleprops.cxx')
-rw-r--r-- | sfx2/source/doc/oleprops.cxx | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sfx2/source/doc/oleprops.cxx b/sfx2/source/doc/oleprops.cxx index 6ecc27a05e84..a8888cd72336 100644 --- a/sfx2/source/doc/oleprops.cxx +++ b/sfx2/source/doc/oleprops.cxx @@ -651,7 +651,7 @@ SfxOleThumbnailProperty::SfxOleThumbnailProperty( void SfxOleThumbnailProperty::ImplLoad( SvStream& ) { - SAL_WARN( "sfx2.doc", "SfxOleThumbnailProperty::ImplLoad - not implemented" ); + SAL_WARN( "sfx.doc", "SfxOleThumbnailProperty::ImplLoad - not implemented" ); SetError( SVSTREAM_INVALID_ACCESS ); } @@ -685,7 +685,7 @@ void SfxOleThumbnailProperty::ImplSave( SvStream& rStrm ) } else { - SAL_WARN( "sfx2.doc", "SfxOleThumbnailProperty::ImplSave - invalid thumbnail property" ); + SAL_WARN( "sfx.doc", "SfxOleThumbnailProperty::ImplSave - invalid thumbnail property" ); SetError( SVSTREAM_INVALID_ACCESS ); } } @@ -701,7 +701,7 @@ SfxOleBlobProperty::SfxOleBlobProperty( sal_Int32 nPropId, void SfxOleBlobProperty::ImplLoad( SvStream& ) { - SAL_WARN( "sfx2.doc", "SfxOleBlobProperty::ImplLoad - not implemented" ); + SAL_WARN( "sfx.doc", "SfxOleBlobProperty::ImplLoad - not implemented" ); SetError( SVSTREAM_INVALID_ACCESS ); } @@ -710,7 +710,7 @@ void SfxOleBlobProperty::ImplSave( SvStream& rStrm ) if (IsValid()) { rStrm.Write( mData.getConstArray(), mData.getLength() ); } else { - SAL_WARN( "sfx2.doc", "SfxOleBlobProperty::ImplSave - invalid BLOB property" ); + SAL_WARN( "sfx.doc", "SfxOleBlobProperty::ImplSave - invalid BLOB property" ); SetError( SVSTREAM_INVALID_ACCESS ); } } @@ -1284,7 +1284,7 @@ const SvGlobalName& SfxOlePropertySet::GetSectionGuid( SfxOleSectionType eSectio case SECTION_GLOBAL: return saGlobalGuid; case SECTION_BUILTIN: return saBuiltInGuid; case SECTION_CUSTOM: return saCustomGuid; - default: SAL_WARN( "sfx2.doc", "SfxOlePropertySet::GetSectionGuid - unknown section type" ); + default: SAL_WARN( "sfx.doc", "SfxOlePropertySet::GetSectionGuid - unknown section type" ); } return saEmptyGuid; } |