diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2014-12-18 13:26:48 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2014-12-18 14:12:28 +0100 |
commit | 6fbf6f2ad1ac2d9254ade029599b46c7a4327a5b (patch) | |
tree | 24aa18bb078f633c203d1fe75edf8c11b4fbc10a /linguistic | |
parent | 585807a77e54504a2ce3c13d344aff61014c0290 (diff) |
linguistic: Use appropriate OUString functions on string constants
Change-Id: I50e17b9de80e826204deeb154b5533b3e87e601c
Diffstat (limited to 'linguistic')
-rw-r--r-- | linguistic/source/dlistimp.cxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linguistic/source/dlistimp.cxx b/linguistic/source/dlistimp.cxx index 4dab774e8d06..7d39be0e0c2e 100644 --- a/linguistic/source/dlistimp.cxx +++ b/linguistic/source/dlistimp.cxx @@ -782,7 +782,7 @@ static sal_Int32 lcl_GetToken( OUString &rToken, sal_Int32 nRes = -1; if (rText.isEmpty() || nPos >= rText.getLength()) - rToken = ""; + rToken.clear(); else if (rDelim.isEmpty()) { rToken = rText; |