diff options
author | Matthias Seidel <mseidel@apache.org> | 2018-01-17 00:10:28 +0000 |
---|---|---|
committer | Matthias Seidel <mseidel@apache.org> | 2018-01-17 00:10:28 +0000 |
commit | 8497b3ed351f2316bea7b735826723148931291a (patch) | |
tree | a1ed9cb8d65dcd019ec2e171b61de741466d2524 /sc | |
parent | e387056aa78f50e7be024014e9236aacd1fe7eab (diff) |
Fixed typos
Notes
Notes:
prefer: 6dc98de97f6bc4325407b098bb153f359000c717
Diffstat (limited to 'sc')
-rw-r--r-- | sc/source/ui/dbgui/asciiopt.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/ui/dbgui/asciiopt.cxx b/sc/source/ui/dbgui/asciiopt.cxx index b54d0f3e7a13..5b95687197e4 100644 --- a/sc/source/ui/dbgui/asciiopt.cxx +++ b/sc/source/ui/dbgui/asciiopt.cxx @@ -302,7 +302,7 @@ void ScAsciiOptions::ReadFromString( const String& rString ) bQuotedFieldAsText = aToken.EqualsAscii("true") ? true : false; } - // Detect special nubmers. + // Detect special numbers. if (nCount >= 8) { aToken = rString.GetToken(7, ','); @@ -396,7 +396,7 @@ String ScAsciiOptions::WriteToString() const aOutStr += String::CreateFromAscii(bQuotedFieldAsText ? "true" : "false"); aOutStr += ','; - // Detect special nubmers. + // Detect special numbers. aOutStr += String::CreateFromAscii(bDetectSpecialNumber ? "true" : "false"); // 9th token is used for "Save as shown" in export options |