diff options
author | Thorsten Behrens <tbehrens@novell.com> | 2010-12-15 01:42:43 +0100 |
---|---|---|
committer | Thorsten Behrens <tbehrens@novell.com> | 2010-12-15 01:42:43 +0100 |
commit | 8184a1310420e9d99bae389f28e1284e4447ae7f (patch) | |
tree | b5c7bae20eb144a1f9c5f607b5a85b74d57adbe0 /basctl | |
parent | 1ad80c04caf67e38531fa0d1ebc67b2fe93924c8 (diff) |
Fix dbgutil build
Diffstat (limited to 'basctl')
-rw-r--r-- | basctl/source/basicide/bastypes.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/basctl/source/basicide/bastypes.cxx b/basctl/source/basicide/bastypes.cxx index 0cf854765708..90b96c95ac13 100644 --- a/basctl/source/basicide/bastypes.cxx +++ b/basctl/source/basicide/bastypes.cxx @@ -298,7 +298,7 @@ void BreakPointList::InsertSorted( BreakPoint* pNewBrk ) { if ( pNewBrk->nLine <= (*i)->nLine ) { - DBG_ASSERT( ( pBrk->nLine != pNewBrk->nLine ) || pNewBrk->bTemp, "BreakPoint existiert schon!" ); + DBG_ASSERT( ( (*i)->nLine != pNewBrk->nLine ) || pNewBrk->bTemp, "BreakPoint existiert schon!" ); maBreakPoints.insert( i, pNewBrk ); return; } |