[Libreoffice-commits] core.git: sc/source
Markus Mohrhard
markus.mohrhard at collabora.co.uk
Mon Dec 15 05:03:44 PST 2014
sc/source/ui/dbgui/asciiopt.cxx | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
New commits:
commit 13de511e7c3c7423dbac7e8751c95cac17194b69
Author: Markus Mohrhard <markus.mohrhard at collabora.co.uk>
Date: Sun Dec 14 21:03:08 2014 +0100
no separator really means no separator, fdo#83027
Change-Id: I612a46701e7447db63f38ed709e8693d0533710d
Reviewed-on: https://gerrit.libreoffice.org/13474
Reviewed-by: Eike Rathke <erack at redhat.com>
Tested-by: Eike Rathke <erack at redhat.com>
diff --git a/sc/source/ui/dbgui/asciiopt.cxx b/sc/source/ui/dbgui/asciiopt.cxx
index b57ed3f..931feba 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];
More information about the Libreoffice-commits
mailing list