summaryrefslogtreecommitdiffstats
path: root/linguistic
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-11-21 15:52:45 +0200
committerNoel Grandin <noel@peralex.com>2013-11-22 08:07:19 +0200
commit73342dbb82ba074d01962359dac50fb2aa36cbeb (patch)
treeaddab0397681725810b42ad55ab15be3fdb4c236 /linguistic
parentremove unnecessary use of OUString constructor in equalsIgnoreAsciiCase (diff)
downloadcore-73342dbb82ba074d01962359dac50fb2aa36cbeb.tar.gz
core-73342dbb82ba074d01962359dac50fb2aa36cbeb.zip
remove unnecessary RTL_CONSTASCII_STRINGPARAM
A final pass through the code, converting code to use the new OUString and OString methods that can detect string literals. Change-Id: Ifa6382335e5650a1c67e52006b26354e0692c710
Diffstat (limited to 'linguistic')
-rw-r--r--linguistic/source/dicimp.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/linguistic/source/dicimp.cxx b/linguistic/source/dicimp.cxx
index 42e18a7b62b6..47391ddbdda5 100644
--- a/linguistic/source/dicimp.cxx
+++ b/linguistic/source/dicimp.cxx
@@ -133,7 +133,7 @@ sal_Int16 ReadDicVersion( SvStreamPtr &rpStream, sal_uInt16 &nLng, sal_Bool &bNe
bNeg = sal_False;
}
- if (aLine.indexOfL(RTL_CONSTASCII_STRINGPARAM("---")) != -1) // end of header
+ if (aLine.indexOf("---") != -1) // end of header
break;
}
if (!bSuccess)