summaryrefslogtreecommitdiff
path: root/sc/source
diff options
context:
space:
mode:
authorMarkus Mohrhard <markus.mohrhard@collabora.co.uk>2014-12-14 21:03:08 +0100
committerMarkus Mohrhard <markus.mohrhard@googlemail.com>2014-12-15 22:47:32 +0100
commite9aa788f6c2016953f3e9ff4483f8d4215c9edea (patch)
tree948d853dfda3d80a46bd1c1a7c2e240f8a60887c /sc/source
parent6815305703b93f2bc4945c33510aecaec1df4512 (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>
Diffstat (limited to 'sc/source')
-rw-r--r--sc/source/ui/dbgui/asciiopt.cxx3
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];