diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2013-03-30 04:57:16 +0100 |
---|---|---|
committer | David Tardon <dtardon@redhat.com> | 2013-03-30 17:37:54 +0000 |
commit | 083092e808ed94325f103a721cc11882c6878b06 (patch) | |
tree | a2c0f1df692585d0fbe78f996e2e0ff89489f097 /extensions | |
parent | 3e0ff98f5371db2270a607306ae498f8d0d02d1d (diff) |
OSL_FAIL -> SAL_WARN
Change-Id: I1871e5e3a319b2d5177ae4bd470046c022c14eb7
Reviewed-on: https://gerrit.libreoffice.org/3121
Reviewed-by: David Tardon <dtardon@redhat.com>
Tested-by: David Tardon <dtardon@redhat.com>
Diffstat (limited to 'extensions')
-rw-r--r-- | extensions/source/dbpilots/gridwizard.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/extensions/source/dbpilots/gridwizard.cxx b/extensions/source/dbpilots/gridwizard.cxx index 1309f1eb51a3..6feabb6d253f 100644 --- a/extensions/source/dbpilots/gridwizard.cxx +++ b/extensions/source/dbpilots/gridwizard.cxx @@ -218,9 +218,9 @@ namespace dbp } catch(const Exception&) { - OSL_FAIL( ( ::rtl::OString("OGridWizard::implApplySettings: unexpected exception while creating the grid column for field ") - += ::rtl::OString(pFormFieldName->getStr(), pFormFieldName->getLength(), osl_getThreadTextEncoding()) - += ::rtl::OString("!") ).getStr() ); + SAL_WARN( "extensions.dbpilots", "OGridWizard::implApplySettings: " << + "unexpected exception while creating the grid column for field " << + pFormFieldName->getStr() << "!" ); } } } |