summaryrefslogtreecommitdiff
path: root/include/svtools/editimplementation.hxx
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 /include/svtools/editimplementation.hxx
parent05211578784c28365ec2b328090a01fc5dc0bfea (diff)
convert include/svtools/edit*.hxx from String to OUString
Change-Id: Iae86236aa3af31b09cddeca0a9725b4f5e125d6c
Diffstat (limited to 'include/svtools/editimplementation.hxx')
-rw-r--r--include/svtools/editimplementation.hxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/svtools/editimplementation.hxx b/include/svtools/editimplementation.hxx
index 983bf6dae5e8..19fb48fabdec 100644
--- a/include/svtools/editimplementation.hxx
+++ b/include/svtools/editimplementation.hxx
@@ -37,7 +37,7 @@ Control& GenericEditImplementation< EDIT >::GetControl()
//----------------------------------------------------------------------
template <class EDIT>
-String GenericEditImplementation< EDIT >::GetText( LineEnd ) const
+OUString GenericEditImplementation< EDIT >::GetText( LineEnd ) const
{
// ignore the line end - this base implementation does not support it
return m_rEdit.GetText( );
@@ -80,7 +80,7 @@ sal_Bool GenericEditImplementation< EDIT >::IsReadOnly() const
//----------------------------------------------------------------------
template <class EDIT>
-void GenericEditImplementation< EDIT >::ReplaceSelected( const String& _rStr )
+void GenericEditImplementation< EDIT >::ReplaceSelected( const OUString& _rStr )
{
m_rEdit.ReplaceSelected( _rStr );
}
@@ -94,7 +94,7 @@ void GenericEditImplementation< EDIT >::DeleteSelected()
//----------------------------------------------------------------------
template <class EDIT>
-String GenericEditImplementation< EDIT >::GetSelected( LineEnd ) const
+OUString GenericEditImplementation< EDIT >::GetSelected( LineEnd ) const
{
return m_rEdit.GetSelected( );
}