summaryrefslogtreecommitdiffstats
path: root/basctl
diff options
context:
space:
mode:
authorJens-Heiner Rechtien <hr@openoffice.org>2003-11-05 11:39:07 +0000
committerJens-Heiner Rechtien <hr@openoffice.org>2003-11-05 11:39:07 +0000
commit0f56f824d7d45a7fb2724694be386cc8131edd51 (patch)
tree6207330103586d6e95f020dd37837270abd76c69 /basctl
parentINTEGRATION: CWS tbe7 (1.19.40); FILE MERGED (diff)
downloadcore-0f56f824d7d45a7fb2724694be386cc8131edd51.tar.gz
core-0f56f824d7d45a7fb2724694be386cc8131edd51.zip
INTEGRATION: CWS tbe7 (1.5.92); FILE MERGED
2003/07/30 08:35:59 tbe 1.5.92.1: #i17353# pass count in Basic IDE break point dialog is not restored
Diffstat (limited to 'basctl')
-rw-r--r--basctl/source/basicide/brkdlg.cxx9
1 files changed, 5 insertions, 4 deletions
diff --git a/basctl/source/basicide/brkdlg.cxx b/basctl/source/basicide/brkdlg.cxx
index 2c03be05cf34..4ab492d85dad 100644
--- a/basctl/source/basicide/brkdlg.cxx
+++ b/basctl/source/basicide/brkdlg.cxx
@@ -2,9 +2,9 @@
*
* $RCSfile: brkdlg.cxx,v $
*
- * $Revision: 1.5 $
+ * $Revision: 1.6 $
*
- * last change: $Author: ab $ $Date: 2002-11-01 14:38:48 $
+ * last change: $Author: hr $ $Date: 2003-11-05 12:39:07 $
*
* The Contents of this file are made available subject to the terms of
* either of the following licenses
@@ -152,11 +152,12 @@ BreakPointDialog::BreakPointDialog( Window* pParent, BreakPointList& rBrkPntList
CheckButtons();
}
-void BreakPointDialog::SetCurrentBreakPoint( const BreakPoint& rBrk )
+void BreakPointDialog::SetCurrentBreakPoint( BreakPoint* pBrk )
{
String aStr( RTL_CONSTASCII_USTRINGPARAM( "# " ) );
- aStr += String::CreateFromInt32( rBrk.nLine );
+ aStr += String::CreateFromInt32( pBrk->nLine );
aComboBox.SetText( aStr );
+ UpdateFields( pBrk );
}
void BreakPointDialog::CheckButtons()