diff options
author | Andras Timar <atimar@suse.com> | 2013-02-12 15:49:31 +0100 |
---|---|---|
committer | Andras Timar <atimar@suse.com> | 2013-02-13 10:19:18 +0100 |
commit | d25486b5a909ff2b3bdd6369dba035ec8df4dff6 (patch) | |
tree | d20f26dbaa7df2b8ac99a4d50b53d9ee9f593830 /svtools/source | |
parent | 6e4fd7ba9f4a02e130e817aadf0b977b8b8b6262 (diff) |
remove rtl:: prefix
Change-Id: I6b2c51c57a98046e30b2782dd2565ee02345379d
Diffstat (limited to 'svtools/source')
-rw-r--r-- | svtools/source/edit/syntaxhighlight.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/svtools/source/edit/syntaxhighlight.cxx b/svtools/source/edit/syntaxhighlight.cxx index ce3fcf153377..0d261d6c5e61 100644 --- a/svtools/source/edit/syntaxhighlight.cxx +++ b/svtools/source/edit/syntaxhighlight.cxx @@ -318,8 +318,8 @@ sal_Bool SimpleTokenizer_Impl::getNextToken( /*out*/TokenTypes& reType, if( bCanBeKeyword ) { - rtl::OUString aKWString(rpStartPos, nCount); - rtl::OString aByteStr = rtl::OUStringToOString(aKWString, + OUString aKWString(rpStartPos, nCount); + OString aByteStr = OUStringToOString(aKWString, RTL_TEXTENCODING_ASCII_US).toAsciiLowerCase(); if ( bsearch( aByteStr.getStr(), ppListKeyWords, nKeyWordCount, sizeof( char* ), compare_strings ) ) |