summaryrefslogtreecommitdiff
path: root/starmath
diff options
context:
space:
mode:
authorRĂ¼diger Timm <rt@openoffice.org>2008-11-10 15:06:12 +0000
committerRĂ¼diger Timm <rt@openoffice.org>2008-11-10 15:06:12 +0000
commitf5bd3d3ff927d42f591b6e5a10d9e2cece1bad12 (patch)
treefdc216a3c7df7b524775b09a7a420389d624194b /starmath
parent03d454a0ec539a7f07106500681208e939bbc386 (diff)
CWS-TOOLING: integrate CWS cmcfixes50
2008-11-10 13:31:50 +0100 cmc r263517 : gio doesn't do anything useful for remote stuff wrt info 2008-11-06 00:11:47 +0100 cmc r263359 : #i93436# pile of other 64bit new gcc warnings 2008-11-05 00:39:03 +0100 cmc r263340 : i95856 let a ppc64 vanilla build succeed 2008-11-04 14:00:25 +0100 cmc r263320 : #i93436# useless const 2008-11-04 11:53:10 +0100 cmc r263314 : #i93436# ambiguous 2008-11-04 11:48:05 +0100 cmc r263313 : #i93436# add some braces 2008-11-04 11:29:24 +0100 cmc r263312 : #i93436# ambiguous 2008-11-04 10:53:46 +0100 cmc r263311 :
Diffstat (limited to 'starmath')
-rw-r--r--starmath/source/mathtype.cxx8
-rw-r--r--starmath/source/parse.cxx2
2 files changed, 5 insertions, 5 deletions
diff --git a/starmath/source/mathtype.cxx b/starmath/source/mathtype.cxx
index a6963526665f..3e672225cc98 100644
--- a/starmath/source/mathtype.cxx
+++ b/starmath/source/mathtype.cxx
@@ -744,7 +744,7 @@ int MathType::Parse(SotStorage *pStor)
//the end of the formula with ENDs (0)'s
ULONG nEnd = pS->Tell();
DBG_ASSERT(nEnd == pS->Seek(STREAM_SEEK_TO_END),
- "Possibly unfully parsed formula")
+ "Possibly unfully parsed formula");
# endif
#endif
return nRet;
@@ -1877,7 +1877,7 @@ int MathType::HandleRecords(int nLevel,sal_uInt8 nSelector,
*pS >> nTabType;
*pS >> nTabOffset;
}
- DBG_ASSERT(FALSE,"Not seen in the wild Equation Ruler Field")
+ DBG_ASSERT(FALSE,"Not seen in the wild Equation Ruler Field");
break;
case FONT:
{
@@ -2878,7 +2878,7 @@ int MathType::HandleTemplate(int nLevel,sal_uInt8 &rSelector,
*pS >> rSelector;
*pS >> rVariation;
*pS >> nOption;
- DBG_ASSERT(rSelector < 48,"Selector out of range")
+ DBG_ASSERT(rSelector < 48,"Selector out of range");
if ((rSelector >= 21) && (rSelector <=26))
{
DBG_ASSERT(nOption < 2,"Option out of range");
@@ -2993,7 +2993,7 @@ void MathType::HandleEmblishments()
APPEND(rRet," breve ");
break;
default:
- DBG_ASSERT(nEmbel < 21,"Embel out of range")
+ DBG_ASSERT(nEmbel < 21,"Embel out of range");
break;
}
if (nVersion < 3)
diff --git a/starmath/source/parse.cxx b/starmath/source/parse.cxx
index 9360e48c2fbd..9e6f3581485e 100644
--- a/starmath/source/parse.cxx
+++ b/starmath/source/parse.cxx
@@ -1318,7 +1318,7 @@ void SmParser::SubSup(ULONG nActiveGroup)
}
nIndex++;
DBG_ASSERT(1 <= nIndex && nIndex <= 1 + SUBSUP_NUM_ENTRIES,
- "SmParser::Power() : sub-/supscript index falsch")
+ "SmParser::Power() : sub-/supscript index falsch");
// set sub-/supscript if not already done
if (aSubNodes.Get(nIndex) != NULL)