summaryrefslogtreecommitdiff
path: root/sc
diff options
context:
space:
mode:
authorJohnny_M <klasse@partyheld.de>2017-11-11 18:31:05 +0100
committerEike Rathke <erack@redhat.com>2017-11-14 20:28:48 +0100
commit425c64fa274ab62ad2f2b0f2ea4f922d35aa747d (patch)
tree4afc0fb50a17a071d0615b11af0a52df45d1ec77 /sc
parent7bcb66baecc9bfbd9930552f984d0e9599ccb6ea (diff)
Translate German comments and debug strings
Change-Id: I12c92ecc270e65cb99e38e9179cf354a8c0708aa Reviewed-on: https://gerrit.libreoffice.org/44633 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Eike Rathke <erack@redhat.com>
Diffstat (limited to 'sc')
-rw-r--r--sc/source/core/tool/interpr4.cxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/sc/source/core/tool/interpr4.cxx b/sc/source/core/tool/interpr4.cxx
index 50350fac8e85..6a05c5c22795 100644
--- a/sc/source/core/tool/interpr4.cxx
+++ b/sc/source/core/tool/interpr4.cxx
@@ -502,7 +502,7 @@ bool ScInterpreter::CreateCellArr(SCCOL nCol1, SCROW nRow1, SCTAB nTab1,
if (!aCell.isEmpty())
{
FormulaError nErr = FormulaError::NONE;
- sal_uInt16 nType = 0; // 0 = Zahl; 1 = String
+ sal_uInt16 nType = 0; // 0 = number; 1 = string
double nVal = 0.0;
OUString aStr;
bool bOk = true;
@@ -3244,13 +3244,13 @@ void ScInterpreter::ScMacro()
OUString aBasicStr;
if (pObject->GetParent())
{
- aBasicStr = pObject->GetParent()->GetName(); // Dokumentenbasic
+ aBasicStr = pObject->GetParent()->GetName(); // document BASIC
}
else
{
- aBasicStr = SfxGetpApp()->GetName(); // Applikationsbasic
+ aBasicStr = SfxGetpApp()->GetName(); // application BASIC
}
- // Parameter-Array zusammenbauen
+ // assemble a parameter array
SbxArrayRef refPar = new SbxArray;
bool bOk = true;