diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2011-03-12 12:08:50 +0100 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2011-03-12 14:19:18 +0100 |
commit | 0c35d637f776a16ca66eaa675cb8bcb35b217e05 (patch) | |
tree | d4bc00bc7b1dcb0676eb463f212aca70a0e474fe /svtools/source/config | |
parent | 65e002dbe7552b34936e736ac8bc6b07da3e5574 (diff) |
Move OSL_ENSURE(0,...) to OSL_FAIL(...)
Diffstat (limited to 'svtools/source/config')
-rw-r--r-- | svtools/source/config/extcolorcfg.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svtools/source/config/extcolorcfg.cxx b/svtools/source/config/extcolorcfg.cxx index 8425e83a7538..42554b327448 100644 --- a/svtools/source/config/extcolorcfg.cxx +++ b/svtools/source/config/extcolorcfg.cxx @@ -123,7 +123,7 @@ public: aMessage.append( ::rtl::OUStringToOString( _sComponentName, RTL_TEXTENCODING_UTF8 ) ); aMessage.append( "\nname: " ); aMessage.append( ::rtl::OUStringToOString( _sName, RTL_TEXTENCODING_UTF8 ) ); - OSL_ENSURE( 0, aMessage.makeStringAndClear().getStr() ); + OSL_FAIL( aMessage.makeStringAndClear().getStr() ); #endif return ExtendedColorConfigValue(); } |