diff options
author | Thomas Arnhold <thomas@arnhold.org> | 2011-03-01 19:05:02 +0100 |
---|---|---|
committer | Thomas Arnhold <thomas@arnhold.org> | 2011-03-02 14:58:56 +0100 |
commit | a6e69f8fcd017519c37be409097108da6a6fcb33 (patch) | |
tree | 5906fed0faf294ccc3cc54a77a878e7b91a16f31 /sc/source/ui/view/cellsh1.cxx | |
parent | 775a632985975057f5fa6c196aaffcd0a05e617a (diff) |
Move DBG_ERROR to OSL_FAIL
Diffstat (limited to 'sc/source/ui/view/cellsh1.cxx')
-rw-r--r-- | sc/source/ui/view/cellsh1.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sc/source/ui/view/cellsh1.cxx b/sc/source/ui/view/cellsh1.cxx index 882a3c88aae4..dabdc6df2531 100644 --- a/sc/source/ui/view/cellsh1.cxx +++ b/sc/source/ui/view/cellsh1.cxx @@ -648,7 +648,7 @@ void ScCellShell::ExecuteEdit( SfxRequest& rReq ) const SvNumberformat* pPrivEntry = pFormatter->GetEntry( nPrivFormat ); if (!pPrivEntry) { - DBG_ERROR("Zahlformat nicht gefunden !!!"); + OSL_FAIL("Zahlformat nicht gefunden !!!"); } else { @@ -921,7 +921,7 @@ void ScCellShell::ExecuteEdit( SfxRequest& rReq ) } else { - DBG_ERROR( "Richtung nicht eindeutig fuer AutoFill" ); + OSL_FAIL( "Richtung nicht eindeutig fuer AutoFill" ); } } } @@ -1977,7 +1977,7 @@ void ScCellShell::ExecuteEdit( SfxRequest& rReq ) } else { - DBG_ERROR("NULL"); + OSL_FAIL("NULL"); } } } @@ -2073,7 +2073,7 @@ void ScCellShell::ExecuteEdit( SfxRequest& rReq ) // default: - DBG_ERROR("falscher Slot bei ExecuteEdit"); + OSL_FAIL("falscher Slot bei ExecuteEdit"); break; } } |