From 59b5ff75745d3c784b7b999605bf50090ee64d34 Mon Sep 17 00:00:00 2001 From: Thomas Arnhold Date: Mon, 11 Mar 2013 21:36:43 +0100 Subject: basic: translation of all debug messages runtime.cxx: Added some output instead of nothing. Change-Id: Ia25ae4b5fe8661a8a3ac317bc0562e1339640cd8 --- basic/source/runtime/basrdll.cxx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'basic/source/runtime/basrdll.cxx') diff --git a/basic/source/runtime/basrdll.cxx b/basic/source/runtime/basrdll.cxx index ccd50c0056d8..6a8b37d38326 100644 --- a/basic/source/runtime/basrdll.cxx +++ b/basic/source/runtime/basrdll.cxx @@ -50,7 +50,7 @@ BasicDLL::~BasicDLL() void BasicDLL::EnableBreak( bool bEnable ) { BasicDLL* pThis = BASIC_DLL(); - DBG_ASSERT( pThis, "BasicDLL::EnableBreak: Noch keine Instanz!" ); + DBG_ASSERT( pThis, "BasicDLL::EnableBreak: No instance yet!" ); if ( pThis ) { pThis->bBreakEnabled = bEnable; @@ -60,7 +60,7 @@ void BasicDLL::EnableBreak( bool bEnable ) void BasicDLL::SetDebugMode( bool bDebugMode ) { BasicDLL* pThis = BASIC_DLL(); - DBG_ASSERT( pThis, "BasicDLL::EnableBreak: Noch keine Instanz!" ); + DBG_ASSERT( pThis, "BasicDLL::EnableBreak: No instance yet!" ); if ( pThis ) { pThis->bDebugMode = bDebugMode; @@ -75,7 +75,7 @@ void BasicDLL::BasicBreak() static bool bJustStopping = false; BasicDLL* pThis = BASIC_DLL(); - DBG_ASSERT( pThis, "BasicDLL::EnableBreak: Noch keine Instanz!" ); + DBG_ASSERT( pThis, "BasicDLL::EnableBreak: No instance yet!" ); if ( pThis ) { if ( StarBASIC::IsRunning() && !bJustStopping && ( pThis->bBreakEnabled || pThis->bDebugMode ) ) -- cgit