summaryrefslogtreecommitdiff
path: root/basic/source/app
diff options
context:
space:
mode:
Diffstat (limited to 'basic/source/app')
-rw-r--r--basic/source/app/app.cxx2
-rw-r--r--basic/source/app/appwin.cxx2
-rw-r--r--basic/source/app/dialogs.cxx2
-rw-r--r--basic/source/app/textedit.cxx2
4 files changed, 4 insertions, 4 deletions
diff --git a/basic/source/app/app.cxx b/basic/source/app/app.cxx
index cdf4d3ae1f..1252c5bc22 100644
--- a/basic/source/app/app.cxx
+++ b/basic/source/app/app.cxx
@@ -306,7 +306,7 @@ void BasicApp::Main( )
// Install filter for OSLAsserts
DbgPrintMsgBox = DbgGetPrintMsgBox();
DbgSetPrintTestTool( DBG_TestToolDebugMessageFilter );
- DBG_INSTOUTERROR( DBG_OUT_TESTTOOL )
+ DBG_INSTOUTERROR( DBG_OUT_TESTTOOL );
if ( osl_setDebugMessageFunc( osl_TestToolDebugMessageFilter ) )
DBG_ERROR("osl_setDebugMessageFunc returns non NULL pointer");
diff --git a/basic/source/app/appwin.cxx b/basic/source/app/appwin.cxx
index 7d9e3732dc..b187e95e44 100644
--- a/basic/source/app/appwin.cxx
+++ b/basic/source/app/appwin.cxx
@@ -623,7 +623,7 @@ BOOL AppWin::Close()
// uncomment to avoid compiler warning
// break;
default:
- DBG_ERROR("Not Implemented in AppWin::Close")
+ DBG_ERROR("Not Implemented in AppWin::Close");
return FALSE;
}
}
diff --git a/basic/source/app/dialogs.cxx b/basic/source/app/dialogs.cxx
index 05442f9b28..e38c399604 100644
--- a/basic/source/app/dialogs.cxx
+++ b/basic/source/app/dialogs.cxx
@@ -1010,7 +1010,7 @@ IMPL_LINK( GenericOptions, CheckButtonsHdl, ComboBox*, pCB )
void GenericOptions::Save( Config &aConfig )
{
(void) aConfig; /* avoid warning about unused parameter */
- DBG_ASSERT( &aConfig == &aConf, "Saving to different Configuration" )
+ DBG_ASSERT( &aConfig == &aConf, "Saving to different Configuration" );
// eventuelle �nderungen Speichern
LINK( this, GenericOptions, LoadGroup ).Call( NULL );
diff --git a/basic/source/app/textedit.cxx b/basic/source/app/textedit.cxx
index ce602bded8..48865c209f 100644
--- a/basic/source/app/textedit.cxx
+++ b/basic/source/app/textedit.cxx
@@ -564,7 +564,7 @@ SbxBase* TextEditImp::GetSbxAtMousePos( String &aWord )
pAppEdit->GetBasicFrame()->Basic().DebugFindNoErrors( TRUE );
SbxBase* pSBX = StarBASIC::FindSBXInCurrentScope( aWord );
pAppEdit->GetBasicFrame()->Basic().DebugFindNoErrors( FALSE );
- DBG_ASSERT( !( !bWasError && SbxBase::IsError()), "Error generated while retrieving Variable data for viewing" )
+ DBG_ASSERT( !( !bWasError && SbxBase::IsError()), "Error generated while retrieving Variable data for viewing" );
if ( !bWasError && SbxBase::IsError() )
SbxBase::ResetError();