diff options
author | Andreas Mantke <maand@gmx.de> | 2010-10-24 22:20:34 +0200 |
---|---|---|
committer | Andreas Mantke <maand@gmx.de> | 2010-10-24 22:20:34 +0200 |
commit | 11529f5522bdd913de5ef5dd61c91aa0c0b168ac (patch) | |
tree | b608edf3f8a2cd972fe20a657a02642bf9a08e02 /basic | |
parent | e83b25a415b700cec75ae5252334e3532b5c4b93 (diff) |
some lines of comment translated
Diffstat (limited to 'basic')
-rw-r--r-- | basic/source/sbx/sbxlng.cxx | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/basic/source/sbx/sbxlng.cxx b/basic/source/sbx/sbxlng.cxx index 42e31d881153..47ae83cb7b21 100644 --- a/basic/source/sbx/sbxlng.cxx +++ b/basic/source/sbx/sbxlng.cxx @@ -162,7 +162,7 @@ start: case SbxBYREF | SbxLONG: nRes = *p->pLong; break; - // ab hier muss getestet werden + // from here had to be tested case SbxBYREF | SbxULONG: aTmp.nULong = *p->pULong; goto ref; case SbxBYREF | SbxERROR: @@ -199,7 +199,7 @@ void ImpPutLong( SbxValues* p, INT32 n ) start: switch( +p->eType ) { - // Ab hier muss getestet werden + // From here had to be tested case SbxCHAR: aTmp.pChar = &p->nChar; goto direct; case SbxBYTE: @@ -223,7 +223,7 @@ start: aTmp.eType = SbxDataType( p->eType | SbxBYREF ); p = &aTmp; goto start; - // ab hier nicht mehr + // from here no longer case SbxLONG: p->nLong = n; break; case SbxSINGLE: |