diff options
-rw-r--r-- | linguistic/source/dlistimp.cxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/linguistic/source/dlistimp.cxx b/linguistic/source/dlistimp.cxx index 075cb8833f8c..191e8092aeac 100644 --- a/linguistic/source/dlistimp.cxx +++ b/linguistic/source/dlistimp.cxx @@ -848,10 +848,10 @@ static void AddInternal( { //! TL TODO: word iterator should be used to break up the text static const char aDefWordDelim[] = - "!\"#$%&'()*+,-./:;<=>?[]\\_^`{|}~\t \n"; - String aDelim = - rtl::OUString(RTL_CONSTASCII_USTRINGPARAM(aDefWordDelim)); - aDelim.EraseAllChars( '.' ); + "!\"#$%&'()*+,-/:;<=>?[]\\_^`{|}~\t \n"; + rtl::OUString aDelim(RTL_CONSTASCII_USTRINGPARAM(aDefWordDelim)); + OSL_ENSURE(aDelim.indexOf(static_cast<sal_Unicode>('.')) == -1, + "ensure no '.'"); String aToken; xub_StrLen nPos = 0; |