summaryrefslogtreecommitdiff
path: root/sw/source/ui/table
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/ui/table')
-rw-r--r--sw/source/ui/table/swtablerep.cxx2
-rw-r--r--sw/source/ui/table/tabledlg.cxx12
2 files changed, 7 insertions, 7 deletions
diff --git a/sw/source/ui/table/swtablerep.cxx b/sw/source/ui/table/swtablerep.cxx
index 5e34a3827a47..b3085bba254e 100644
--- a/sw/source/ui/table/swtablerep.cxx
+++ b/sw/source/ui/table/swtablerep.cxx
@@ -77,7 +77,7 @@ void DbgTColumn(TColumn* pTColumn, USHORT nCount)
String sMsg(i);
sMsg += pTColumn[i].bVisible ? " v " : " h ";
sMsg += pTColumn[i].nWidth;
- OSL_ENSURE(false, sMsg)
+ OSL_ENSURE(false, sMsg);
}
}
#endif
diff --git a/sw/source/ui/table/tabledlg.cxx b/sw/source/ui/table/tabledlg.cxx
index 6c3dc96d7eff..6efd11c68d79 100644
--- a/sw/source/ui/table/tabledlg.cxx
+++ b/sw/source/ui/table/tabledlg.cxx
@@ -81,8 +81,8 @@ using namespace ::com::sun::star;
#ifdef DEBUG_TBLDLG
void DbgTblRep(SwTableRep* pRep)
{
- OSL_ENSURE(false, String(pRep->GetColCount()))
- OSL_ENSURE(false, String(pRep->GetAllColCount()))
+ OSL_ENSURE(false, String(pRep->GetColCount()));
+ OSL_ENSURE(false, String(pRep->GetAllColCount()));
SwTwips nSum = 0;
for(USHORT i = 0; i < pRep->GetAllColCount(); i++)
{
@@ -90,23 +90,23 @@ void DbgTblRep(SwTableRep* pRep)
sMsg += pRep->GetColumns()[i].bVisible ? " v " : " h ";
sMsg += pRep->GetColumns()[i].nWidth;
nSum +=pRep->GetColumns()[i].nWidth;
- OSL_ENSURE(false, sMsg)
+ OSL_ENSURE(false, sMsg);
}
String sMsg("Column sum: ");
sMsg += nSum;
sMsg += " table width: ";
sMsg += pRep->GetWidth();
- OSL_ENSURE(false, sMsg)
+ OSL_ENSURE(false, sMsg);
sMsg = "Gesamt/Links/Rechts: ";
sMsg += pRep->GetSpace();
sMsg += '/';
sMsg += pRep->GetLeftSpace();
sMsg += '/';
sMsg += pRep->GetRightSpace();
- OSL_ENSURE(false, sMsg)
+ OSL_ENSURE(false, sMsg);
sMsg = "Align: ";
sMsg += pRep->GetAlign();
- OSL_ENSURE(false, sMsg)
+ OSL_ENSURE(false, sMsg);
};