diff options
author | Miklos Vajna <vmiklos@collabora.co.uk> | 2013-10-03 10:22:11 +0200 |
---|---|---|
committer | Miklos Vajna <vmiklos@collabora.co.uk> | 2013-10-03 10:24:22 +0200 |
commit | dccaf7afcf9a2b50fb7ca612a3645c2d73134da3 (patch) | |
tree | 9ef4c9d18feb9172169043353b7c87b2a4e761e3 /svl | |
parent | e30a34f7d7aa3bee338e2cb0323fa153de12f098 (diff) |
SfxStyleSheetBase::SetFollow: OSL_FAIL -> SAL_WARN
Change-Id: I9fb67a1b7ccd4c8fbc17274902a16d8c0b13d598
Diffstat (limited to 'svl')
-rw-r--r-- | svl/source/items/style.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svl/source/items/style.cxx b/svl/source/items/style.cxx index 269557765a93..55bca3f0a65d 100644 --- a/svl/source/items/style.cxx +++ b/svl/source/items/style.cxx @@ -253,7 +253,7 @@ bool SfxStyleSheetBase::SetFollow( const OUString& rName ) { if( !pPool->Find( rName, nFamily ) ) { - OSL_FAIL( "StyleSheet-Follow nicht gefunden" ); + SAL_WARN( "svl", "StyleSheet-Follow not found" ); return false; } aFollow = rName; |