summaryrefslogtreecommitdiff
path: root/include/svtools/editimplementation.hxx
diff options
context:
space:
mode:
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( );
}