diff options
author | Markus Mohrhard <markus.mohrhard@collabora.co.uk> | 2014-12-14 21:03:08 +0100 |
---|---|---|
committer | Eike Rathke <erack@redhat.com> | 2014-12-15 13:03:13 +0000 |
commit | 13de511e7c3c7423dbac7e8751c95cac17194b69 (patch) | |
tree | 08b4ba246a4a165fc7a88296b94306de504e1c12 | |
parent | 857f4950f5eaef17a4ec0cc9f69c215dc5d3c2f2 (diff) |
no separator really means no separator, fdo#83027
Change-Id: I612a46701e7447db63f38ed709e8693d0533710d
Reviewed-on: https://gerrit.libreoffice.org/13474
Reviewed-by: Eike Rathke <erack@redhat.com>
Tested-by: Eike Rathke <erack@redhat.com>
-rw-r--r-- | sc/source/ui/dbgui/asciiopt.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sc/source/ui/dbgui/asciiopt.cxx b/sc/source/ui/dbgui/asciiopt.cxx index b57ed3fce935..931febaabe20 100644 --- a/sc/source/ui/dbgui/asciiopt.cxx +++ b/sc/source/ui/dbgui/asciiopt.cxx @@ -353,8 +353,7 @@ sal_Unicode ScAsciiOptions::GetWeightedFieldSep( const OUString & rFieldSeps, bo OUString aFieldSeps( bDecodeNumbers ? lcl_decodeSepString( rFieldSeps, bMergeFieldSeps) : rFieldSeps); if (aFieldSeps.isEmpty()) { - SAL_WARN( "sc.ui", "ScAsciiOptions::GetWeightedFieldSep - no separator at all, using ',' comma"); - return ','; + return 0; } else if (aFieldSeps.getLength() == 1) return aFieldSeps[0]; |