summaryrefslogtreecommitdiff
path: root/basctl
diff options
context:
space:
mode:
authorAndras Timar <atimar@suse.com>2013-02-12 22:29:33 +0100
committerAndras Timar <atimar@suse.com>2013-02-13 10:19:20 +0100
commitfb1f3db03df25bee8b17a85e26774e79483de791 (patch)
tree7fd3d5c66ff0ef5fe4bde85613593c7f0ad39714 /basctl
parentd25486b5a909ff2b3bdd6369dba035ec8df4dff6 (diff)
String to OUString
Change-Id: Ibb0b1808532622ffb2dfc55d533428f6d72b890c
Diffstat (limited to 'basctl')
-rw-r--r--basctl/source/basicide/baside2b.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/basctl/source/basicide/baside2b.cxx b/basctl/source/basicide/baside2b.cxx
index bbb7baf17b4e..b2a01828fa06 100644
--- a/basctl/source/basicide/baside2b.cxx
+++ b/basctl/source/basicide/baside2b.cxx
@@ -787,7 +787,7 @@ void EditorWindow::ImpDoHighlight( sal_uLong nLine )
{
if ( bDoSyntaxHighlight )
{
- String aLine( pEditEngine->GetText( nLine ) );
+ OUString aLine( pEditEngine->GetText( nLine ) );
Range aChanges = aHighlighter.notifyChange( nLine, 0, &aLine, 1 );
if ( aChanges.Len() )
{
@@ -935,7 +935,7 @@ void EditorWindow::ParagraphInsertedDeleted( sal_uLong nPara, bool bInserted )
if ( bDoSyntaxHighlight )
{
- String aDummy;
+ OUString aDummy;
aHighlighter.notifyChange( nPara, bInserted ? 1 : (-1), &aDummy, 1 );
}
}