| commit | 271b5d979a5b498c3e44b031af7dc3002355a0fd | [log] |
|---|---|---|
| author | Eike Rathke <erack@redhat.com> | Thu Nov 10 20:40:44 2022 +0100 |
| committer | Xisco Fauli <xiscofauli@libreoffice.org> | Wed Nov 16 13:13:38 2022 +0100 |
| tree | 1a3ff3008762614f66fc8b87dfea0de09685ccdb | |
| parent | dab24f57fe5b3011bd9b14653f9a74991156656e [diff] |
Resolves: tdf#151947 Merging separators must not scan for field end Regression introduced with commit cf777cfcb22647b1f2d6ace307fbcc4f6d2cca30 CommitDate: Sun Oct 2 17:07:06 2022 +0200 Resolves: tdf#125110 tdf#151211 Disentangle the convoluted CSV/TSV-clip import a copy-paste replacement logic error. Change-Id: Ibd699a4edfa9f88da26d888afa8567ee34e78a5e Reviewed-on: https://gerrit.libreoffice.org/c/core/+/142572 Reviewed-by: Eike Rathke <erack@redhat.com> Tested-by: Jenkins (cherry picked from commit 5db9d8356c8fdc732942357cd2171ba27eda8647) Reviewed-on: https://gerrit.libreoffice.org/c/core/+/142528 Reviewed-by: Mike Kaganski <mike.kaganski@collabora.com> Reviewed-by: Caolán McNamara <caolanm@redhat.com> Reviewed-by: Xisco Fauli <xiscofauli@libreoffice.org> Tested-by: Xisco Fauli <xiscofauli@libreoffice.org>
diff --git a/sc/source/ui/docshell/impex.cxx b/sc/source/ui/docshell/impex.cxx index 3be1188..3f80f88 100644 --- a/sc/source/ui/docshell/impex.cxx +++ b/sc/source/ui/docshell/impex.cxx
@@ -1924,7 +1924,7 @@ const sal_Unicode* ScImportExport::ScanNextFieldFromString( const sal_Unicode* p } if ( bMergeSeps ) // skip following delimiters { while (!lcl_isFieldEnd( *p, pSeps)) while (*p && ScGlobal::UnicodeStrChr( pSeps, *p)) p++; } return p;