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/table | |
parent | 65e002dbe7552b34936e736ac8bc6b07da3e5574 (diff) |
Move OSL_ENSURE(0,...) to OSL_FAIL(...)
Diffstat (limited to 'svtools/source/table')
-rw-r--r-- | svtools/source/table/tablecontrol.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svtools/source/table/tablecontrol.cxx b/svtools/source/table/tablecontrol.cxx index 1ed3894ef883..2cbf8c8628f2 100644 --- a/svtools/source/table/tablecontrol.cxx +++ b/svtools/source/table/tablecontrol.cxx @@ -316,7 +316,7 @@ namespace svt { namespace table aRetText = GetColumnName(_nCol); break; default: - OSL_ENSURE(0,"GridControl::GetAccessibleName: invalid enum!"); + OSL_FAIL("GridControl::GetAccessibleName: invalid enum!"); } return aRetText; } |