summaryrefslogtreecommitdiff
path: root/sw/source/core/unocore/unoportenum.cxx
diff options
context:
space:
mode:
authorCédric Bosdonnat <cedricbosdo@openoffice.org>2010-11-25 17:08:45 +0100
committerCédric Bosdonnat <cedricbosdo@openoffice.org>2010-11-25 17:12:34 +0100
commitc16ba8a04fd4599e439e7e039705e41691c43acb (patch)
tree66a1c67973a674245548e10ff0746d1e473a7703 /sw/source/core/unocore/unoportenum.cxx
parente9eaf033646695987e218907a565b555b976c5c8 (diff)
Removed DBG_UTIL from sw
* Fixed the different dbglevel builds * This needed to change all the sw local ASSERT to OSL_ENSURE...
Diffstat (limited to 'sw/source/core/unocore/unoportenum.cxx')
-rw-r--r--sw/source/core/unocore/unoportenum.cxx16
1 files changed, 8 insertions, 8 deletions
diff --git a/sw/source/core/unocore/unoportenum.cxx b/sw/source/core/unocore/unoportenum.cxx
index fadb1ec1e11f..5097f8887f9c 100644
--- a/sw/source/core/unocore/unoportenum.cxx
+++ b/sw/source/core/unocore/unoportenum.cxx
@@ -329,13 +329,13 @@ lcl_ExportFieldMark(
SwDoc* pDoc = pUnoCrsr->GetDoc();
//flr: maybe its a good idea to add a special hint to the hints array and rely on the hint segmentation....
const xub_StrLen start = pUnoCrsr->Start()->nContent.GetIndex();
- ASSERT(pUnoCrsr->End()->nContent.GetIndex() == start,
+ OSL_ENSURE(pUnoCrsr->End()->nContent.GetIndex() == start,
"hmm --- why is this different");
pUnoCrsr->Right(1, CRSR_SKIP_CHARS, FALSE, FALSE);
if ( *pUnoCrsr->GetMark() == *pUnoCrsr->GetPoint() )
{
- ASSERT(false, "cannot move cursor?");
+ OSL_ENSURE(false, "cannot move cursor?");
return 0;
}
@@ -384,7 +384,7 @@ lcl_ExportFieldMark(
}
else
{
- ASSERT(false, "no fieldmark found?");
+ OSL_ENSURE(false, "no fieldmark found?");
}
return xRef;
}
@@ -657,7 +657,7 @@ lcl_ExportHints(
case RES_TXTATR_META:
case RES_TXTATR_METAFIELD:
{
- ASSERT(*pAttr->GetStart() != *pAttr->GetEnd(),
+ OSL_ENSURE(*pAttr->GetStart() != *pAttr->GetEnd(),
"empty meta?");
if ((i_nStartPos > 0) &&
(*pAttr->GetStart() < i_nStartPos))
@@ -676,7 +676,7 @@ lcl_ExportHints(
PortionList_t Top = rPortionStack.top();
if (Top.second != pAttr)
{
- ASSERT(false, "ExportHints: stack error" );
+ OSL_ENSURE(false, "ExportHints: stack error" );
}
else
{
@@ -1114,7 +1114,7 @@ lcl_CreatePortions(
bCursorMoved, nNextAttrIndex);
if (PortionStack.empty())
{
- ASSERT(false, "CreatePortions: stack underflow");
+ OSL_ENSURE(false, "CreatePortions: stack underflow");
return;
}
}
@@ -1131,7 +1131,7 @@ lcl_CreatePortions(
}
else
{
- ASSERT(!FieldMarks.size() ||
+ OSL_ENSURE(!FieldMarks.size() ||
(FieldMarks.front() != nCurrentIndex),
"fieldmark and hint with CH_TXTATR at same pos?");
}
@@ -1163,7 +1163,7 @@ lcl_CreatePortions(
}
}
- ASSERT((PortionStack.size() == 1) && !PortionStack.top().second,
+ OSL_ENSURE((PortionStack.size() == 1) && !PortionStack.top().second,
"CreatePortions: stack error" );
}