diff options
author | Marcel Metz <mmetz@adrian-broher.net> | 2012-01-16 21:38:13 +0100 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2012-01-17 23:27:42 +0100 |
commit | 91fe68f4c2d66dc34b99386f824abdd6c09f6bb1 (patch) | |
tree | 39621784f14befee46b01812ff546920343d4945 /sfx2/source/doc/oleprops.cxx | |
parent | 28c9559f64d1d4ff2d0e58d8ecac621e8c7dee90 (diff) |
Replaced SAL_INFO with SAL_WARN were applicable.
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 42250f87ccc9..91d9c5bce5ac 100644 --- a/sfx2/source/doc/oleprops.cxx +++ b/sfx2/source/doc/oleprops.cxx @@ -687,7 +687,7 @@ SfxOleThumbnailProperty::SfxOleThumbnailProperty( void SfxOleThumbnailProperty::ImplLoad( SvStream& ) { - SAL_INFO( "sfx2", "SfxOleThumbnailProperty::ImplLoad - not implemented" ); + SAL_WARN( "sfx2.doc", "SfxOleThumbnailProperty::ImplLoad - not implemented" ); SetError( SVSTREAM_INVALID_ACCESS ); } @@ -721,7 +721,7 @@ void SfxOleThumbnailProperty::ImplSave( SvStream& rStrm ) } else { - SAL_INFO( "sfx2", "SfxOleThumbnailProperty::ImplSave - invalid thumbnail property" ); + SAL_WARN( "sfx2.doc", "SfxOleThumbnailProperty::ImplSave - invalid thumbnail property" ); SetError( SVSTREAM_INVALID_ACCESS ); } } @@ -737,7 +737,7 @@ SfxOleBlobProperty::SfxOleBlobProperty( sal_Int32 nPropId, void SfxOleBlobProperty::ImplLoad( SvStream& ) { - SAL_INFO( "sfx2", "SfxOleBlobProperty::ImplLoad - not implemented" ); + SAL_WARN( "sfx2.doc", "SfxOleBlobProperty::ImplLoad - not implemented" ); SetError( SVSTREAM_INVALID_ACCESS ); } @@ -746,7 +746,7 @@ void SfxOleBlobProperty::ImplSave( SvStream& rStrm ) if (IsValid()) { rStrm.Write( mData.getConstArray(), mData.getLength() ); } else { - SAL_INFO( "sfx2", "SfxOleBlobProperty::ImplSave - invalid BLOB property" ); + SAL_WARN( "sfx2.doc", "SfxOleBlobProperty::ImplSave - invalid BLOB property" ); SetError( SVSTREAM_INVALID_ACCESS ); } } @@ -1320,7 +1320,7 @@ const SvGlobalName& SfxOlePropertySet::GetSectionGuid( SfxOleSectionType eSectio case SECTION_GLOBAL: return saGlobalGuid; case SECTION_BUILTIN: return saBuiltInGuid; case SECTION_CUSTOM: return saCustomGuid; - default: SAL_INFO( "sfx2", "SfxOlePropertySet::GetSectionGuid - unknown section type" ); + default: SAL_WARN( "sfx2.doc", "SfxOlePropertySet::GetSectionGuid - unknown section type" ); } return saEmptyGuid; } |