diff options
Diffstat (limited to 'sc/source/ui/app/scmod.cxx')
-rw-r--r-- | sc/source/ui/app/scmod.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sc/source/ui/app/scmod.cxx b/sc/source/ui/app/scmod.cxx index e777e1b5d325..18aa0845088c 100644 --- a/sc/source/ui/app/scmod.cxx +++ b/sc/source/ui/app/scmod.cxx @@ -1462,11 +1462,11 @@ void ScModule::InputSetSelection( sal_Int32 nStart, sal_Int32 nEnd ) pHdl->InputSetSelection( nStart, nEnd ); } -void ScModule::InputReplaceSelection( const OUString& rStr ) +void ScModule::InputReplaceSelection( std::u16string_view aStr ) { ScInputHandler* pHdl = GetInputHdl(); if (pHdl) - pHdl->InputReplaceSelection( rStr ); + pHdl->InputReplaceSelection( aStr ); } void ScModule::InputTurnOffWinEngine() |