diff options
author | Markus Mohrhard <markus.mohrhard@collabora.co.uk> | 2014-12-14 21:03:08 +0100 |
---|---|---|
committer | Markus Mohrhard <markus.mohrhard@googlemail.com> | 2014-12-15 22:47:32 +0100 |
commit | e9aa788f6c2016953f3e9ff4483f8d4215c9edea (patch) | |
tree | 948d853dfda3d80a46bd1c1a7c2e240f8a60887c | |
parent | 6815305703b93f2bc4945c33510aecaec1df4512 (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 b4a72d10d5fe..602eca3d90a6 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]; |