summaryrefslogtreecommitdiff
path: root/svtools
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-08-19 14:40:07 +0200
committerNoel Grandin <noel@peralex.com>2013-08-22 10:49:25 +0200
commit823a6cb82555709e50f281a68ff64442001a011b (patch)
treed1469f82bf7e9c608c93a66a6796606cc1e4c847 /svtools
parent05211578784c28365ec2b328090a01fc5dc0bfea (diff)
convert include/svtools/edit*.hxx from String to OUString
Change-Id: Iae86236aa3af31b09cddeca0a9725b4f5e125d6c
Diffstat (limited to 'svtools')
-rw-r--r--svtools/source/brwbox/ebbcontrols.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/svtools/source/brwbox/ebbcontrols.cxx b/svtools/source/brwbox/ebbcontrols.cxx
index 7e68ebf434c2..890ccb73107f 100644
--- a/svtools/source/brwbox/ebbcontrols.cxx
+++ b/svtools/source/brwbox/ebbcontrols.cxx
@@ -372,13 +372,13 @@ namespace svt
//= MultiLineEditImplementation
//==================================================================
//------------------------------------------------------------------
- String MultiLineEditImplementation::GetText( LineEnd aSeparator ) const
+ OUString MultiLineEditImplementation::GetText( LineEnd aSeparator ) const
{
return const_cast< MultiLineEditImplementation* >( this )->GetEditWindow().GetText( aSeparator );
}
//------------------------------------------------------------------
- String MultiLineEditImplementation::GetSelected( LineEnd aSeparator ) const
+ OUString MultiLineEditImplementation::GetSelected( LineEnd aSeparator ) const
{
return const_cast< MultiLineEditImplementation* >( this )->GetEditWindow().GetSelected( aSeparator );
}
@@ -431,7 +431,7 @@ namespace svt
case KEY_RIGHT:
{
Selection aSel = m_pEditImplementation->GetSelection();
- bResult = !aSel && aSel.Max() == m_pEditImplementation->GetText( LINEEND_LF ).Len();
+ bResult = !aSel && aSel.Max() == m_pEditImplementation->GetText( LINEEND_LF ).getLength();
} break;
case KEY_HOME:
case KEY_LEFT: