diff options
author | Andras Timar <atimar@suse.com> | 2013-02-12 22:29:33 +0100 |
---|---|---|
committer | Andras Timar <atimar@suse.com> | 2013-02-13 10:19:20 +0100 |
commit | fb1f3db03df25bee8b17a85e26774e79483de791 (patch) | |
tree | 7fd3d5c66ff0ef5fe4bde85613593c7f0ad39714 /svtools/inc | |
parent | d25486b5a909ff2b3bdd6369dba035ec8df4dff6 (diff) |
String to OUString
Change-Id: Ibb0b1808532622ffb2dfc55d533428f6d72b890c
Diffstat (limited to 'svtools/inc')
-rw-r--r-- | svtools/inc/svtools/syntaxhighlight.hxx | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/svtools/inc/svtools/syntaxhighlight.hxx b/svtools/inc/svtools/syntaxhighlight.hxx index 33d9149e7151..60e917dd967a 100644 --- a/svtools/inc/svtools/syntaxhighlight.hxx +++ b/svtools/inc/svtools/syntaxhighlight.hxx @@ -131,8 +131,8 @@ public: SimpleTokenizer_Impl( HighlighterLanguage aLang = HIGHLIGHT_BASIC ); ~SimpleTokenizer_Impl( void ); - sal_uInt16 parseLine( sal_uInt32 nLine, const String* aSource ); - void getHighlightPortions( sal_uInt32 nParseLine, const String& rLine, + sal_uInt16 parseLine( sal_uInt32 nLine, const OUString* aSource ); + void getHighlightPortions( sal_uInt32 nParseLine, const OUString& rLine, /*out*/HighlightPortions& portions ); void setKeyWords( const char** ppKeyWords, sal_uInt16 nCount ); }; @@ -165,9 +165,9 @@ public: void initialize( HighlighterLanguage eLanguage_ ); const Range notifyChange( sal_uInt32 nLine, sal_Int32 nLineCountDifference, - const String* pChangedLines, sal_uInt32 nArrayLength); + const OUString* pChangedLines, sal_uInt32 nArrayLength); - void getHighlightPortions( sal_uInt32 nLine, const String& rLine, + void getHighlightPortions( sal_uInt32 nLine, const OUString& rLine, HighlightPortions& pPortions ); HighlighterLanguage GetLanguage() { return eLanguage;} |