summaryrefslogtreecommitdiff
path: root/basic
diff options
context:
space:
mode:
authorAndreas Mantke <maand@gmx.de>2010-10-24 22:24:57 +0200
committerAndreas Mantke <maand@gmx.de>2010-10-24 22:24:57 +0200
commitd71d31fcec352b089bc49637f80fa99bdbaf9bc6 (patch)
tree233875ff80e92516201a61604578af3d4ed0a220 /basic
parent11529f5522bdd913de5ef5dd61c91aa0c0b168ac (diff)
some lines of comment translated
Diffstat (limited to 'basic')
-rw-r--r--basic/source/sbx/sbxint.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/basic/source/sbx/sbxint.cxx b/basic/source/sbx/sbxint.cxx
index 8e0e649a0030..e15ece1b6d82 100644
--- a/basic/source/sbx/sbxint.cxx
+++ b/basic/source/sbx/sbxint.cxx
@@ -195,7 +195,7 @@ start:
case SbxBYREF | SbxBOOL:
nRes = *p->pInteger; break;
- // ab hier muss getestet werden
+ // from here had to be tested
case SbxBYREF | SbxLONG:
aTmp.nLong = *p->pLong; goto ref;
case SbxBYREF | SbxULONG:
@@ -233,7 +233,7 @@ void ImpPutInteger( SbxValues* p, INT16 n )
start:
switch( +p->eType )
{
- // hier muss getestet werden
+ // here had to be tested
case SbxCHAR:
aTmp.pChar = &p->nChar; goto direct;
case SbxBYTE:
@@ -249,7 +249,7 @@ start:
aTmp.eType = SbxDataType( p->eType | SbxBYREF );
p = &aTmp; goto start;
- // ab hier nicht mehr
+ // frome here no longer
case SbxINTEGER:
case SbxBOOL:
p->nInteger = n; break;