From 01075a7274bd3921501d382a71720581a48bfd66 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Mon, 27 Jul 2015 11:37:01 +0200 Subject: inline the "old" SbxErr constants Change-Id: I1c54c792e0397d61c97d5067963b343f912275fc --- basctl/source/basicide/baside2b.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'basctl') diff --git a/basctl/source/basicide/baside2b.cxx b/basctl/source/basicide/baside2b.cxx index c21839829f42..9512e4052aef 100644 --- a/basctl/source/basicide/baside2b.cxx +++ b/basctl/source/basicide/baside2b.cxx @@ -1984,7 +1984,7 @@ void StackWindow::UpdateCalls() } SbxBase::ResetError(); - if( eOld != SbxERR_OK ) + if( eOld != ERRCODE_SBX_OK ) SbxBase::SetError( eOld ); } else @@ -2624,7 +2624,7 @@ void WatchTreeListBox::UpdateWatches( bool bBasicStopped ) Invalidate(); SbxBase::ResetError(); - if( eOld != SbxERR_OK ) + if( eOld != ERRCODE_SBX_OK ) SbxBase::SetError( eOld ); setBasicWatchMode( false ); } -- cgit