summaryrefslogtreecommitdiffstats
path: root/sc/source/ui/docshell/docsh.cxx
diff options
context:
space:
mode:
authorMarcos Paulo de Souza <marcos.souza.org@gmail.com>2013-05-02 08:22:00 -0300
committerAndras Timar <atimar@suse.com>2013-05-09 09:49:15 +0000
commit86b73eeef4350f0bf29c8ff3c71abb86fc1f6572 (patch)
tree12d4f449ef82eaa27cef064a7d2aee95d5588bb0 /sc/source/ui/docshell/docsh.cxx
parentUpdate pch (diff)
downloadcore-86b73eeef4350f0bf29c8ff3c71abb86fc1f6572.tar.gz
core-86b73eeef4350f0bf29c8ff3c71abb86fc1f6572.zip
fdo#63154: Remove _CL and _LF from solar.h
And use RTL_CHAR_{CR,LF} from rtl/string.h Conflicts: vcl/source/app/dbggui.cxx Change-Id: I05b0325006845e48eb5483485a9042aa7b0cd22a Reviewed-on: https://gerrit.libreoffice.org/3740 Reviewed-by: Andras Timar <atimar@suse.com> Tested-by: Andras Timar <atimar@suse.com>
Diffstat (limited to 'sc/source/ui/docshell/docsh.cxx')
-rw-r--r--sc/source/ui/docshell/docsh.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sc/source/ui/docshell/docsh.cxx b/sc/source/ui/docshell/docsh.cxx
index 4c5fcdc810a4..d09294fd4a86 100644
--- a/sc/source/ui/docshell/docsh.cxx
+++ b/sc/source/ui/docshell/docsh.cxx
@@ -1759,7 +1759,7 @@ sal_Int32 getTextSepPos(
sal_Int32 nPos = rStr.indexOf(rTextSep);
rNeedQuotes = rAsciiOpt.bQuoteAllText || (nPos >= 0) ||
(rStr.indexOf(rFieldSep) >= 0) ||
- (rStr.indexOf(sal_Unicode(_LF)) >= 0);
+ (rStr.indexOf(sal_Unicode('\n')) >= 0);
return nPos;
}