summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEike Rathke <erack@redhat.com>2013-08-26 14:08:08 +0200
committerFridrich Strba <fridrich@documentfoundation.org>2013-08-26 12:23:06 +0000
commit8875f681585e73f3f37088d58c75bf04ad098e2e (patch)
tree6b7c1e1e171bc6e5a4782a7fb997ef4364d83454
parentc8b6437fb60e0428d615ca5c4b532f79b721785a (diff)
resolved fdo#68437 append the bDetectSpecialNumber "true" string in options
Regression introduced with 465dbaecf9890b7117a45d02ea982ef7aca32720 Change-Id: I7c05c7f246dddd0271c421aa358068365d44fb98 (cherry picked from commit aaa1bc40bb197968946c39d4c31c13588191bf55) Reviewed-on: https://gerrit.libreoffice.org/5632 Reviewed-by: Fridrich Strba <fridrich@documentfoundation.org> Tested-by: Fridrich Strba <fridrich@documentfoundation.org>
-rw-r--r--sc/source/ui/dbgui/asciiopt.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/dbgui/asciiopt.cxx b/sc/source/ui/dbgui/asciiopt.cxx
index 2a195ade828c..827a2f0651c0 100644
--- a/sc/source/ui/dbgui/asciiopt.cxx
+++ b/sc/source/ui/dbgui/asciiopt.cxx
@@ -372,7 +372,7 @@ String ScAsciiOptions::WriteToString() const
// Language
OUString::number(eLang) + "," +
// Import quoted field as text.
- OUString::boolean( bQuotedFieldAsText ) + ",";
+ OUString::boolean( bQuotedFieldAsText ) + "," +
// Detect special numbers.
OUString::boolean( bDetectSpecialNumber );