summaryrefslogtreecommitdiff
path: root/basctl/source
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2003-11-05 11:38:51 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2003-11-05 11:38:51 +0000
commit16c3be095b0cd196b616dac08b01539661447edb (patch)
tree021e2a413dc667b9063d1c9866a5be9b65ec5225 /basctl/source
parent82bdaeb1712090fc315b70e5116ab2e22c3584f1 (diff)
INTEGRATION: CWS tbe7 (1.19.40); FILE MERGED
2003/07/30 08:35:59 tbe 1.19.40.1: #i17353# pass count in Basic IDE break point dialog is not restored
Diffstat (limited to 'basctl/source')
-rw-r--r--basctl/source/basicide/bastypes.cxx14
1 files changed, 12 insertions, 2 deletions
diff --git a/basctl/source/basicide/bastypes.cxx b/basctl/source/basicide/bastypes.cxx
index 090f10c9e717..f80e4fc771fe 100644
--- a/basctl/source/basicide/bastypes.cxx
+++ b/basctl/source/basicide/bastypes.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: bastypes.cxx,v $
*
- * $Revision: 1.19 $
+ * $Revision: 1.20 $
*
- * last change: $Author: rt $ $Date: 2003-04-23 16:39:39 $
+ * last change: $Author: hr $ $Date: 2003-11-05 12:38:51 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -425,6 +425,16 @@ void BreakPointList::AdjustBreakPoints( ULONG nLine, BOOL bInserted )
}
}
+void BreakPointList::ResetHitCount()
+{
+ BreakPoint* pBrk = First();
+ while ( pBrk )
+ {
+ pBrk->nHitCount = 0;
+ pBrk = Next();
+ }
+}
+
void IDEBaseWindow::Deactivating()
{
}