diff options
author | Eike Rathke <erack@redhat.com> | 2013-08-26 14:08:08 +0200 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2013-08-26 14:11:25 +0200 |
commit | aaa1bc40bb197968946c39d4c31c13588191bf55 (patch) | |
tree | 25d66c75d2354d7d7c4358a7c4d6ed30916ca767 /sc/source/ui/dbgui/asciiopt.cxx | |
parent | 4c96fa780890d2538e744d8080ac689a2fc1d593 (diff) |
resolved fdo#68437 append the bDetectSpecialNumber "true" string in options
Regression introduced with 465dbaecf9890b7117a45d02ea982ef7aca32720
Change-Id: I7c05c7f246dddd0271c421aa358068365d44fb98
Diffstat (limited to 'sc/source/ui/dbgui/asciiopt.cxx')
-rw-r--r-- | sc/source/ui/dbgui/asciiopt.cxx | 2 |
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 ); |