summaryrefslogtreecommitdiff
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:50:45 +0100
commitd156a160a45337fdcdca25515cb8c723d799cb21 (patch)
treecf812a121d346b2878fec877fa6eb9692a82d963
parent9efaaa57d73367ba737be151de8ecc3730374230 (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.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 1072a89b71be..4b7c1b89cbaf 100644
--- a/sc/source/ui/dbgui/asciiopt.cxx
+++ b/sc/source/ui/dbgui/asciiopt.cxx
@@ -366,8 +366,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];