summaryrefslogtreecommitdiff
path: root/sw/source/ui/cctrl/actctrl.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'sw/source/ui/cctrl/actctrl.cxx')
-rw-r--r--sw/source/ui/cctrl/actctrl.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/sw/source/ui/cctrl/actctrl.cxx b/sw/source/ui/cctrl/actctrl.cxx
index 105691be41ce..fc6fbb347764 100644
--- a/sw/source/ui/cctrl/actctrl.cxx
+++ b/sw/source/ui/cctrl/actctrl.cxx
@@ -29,6 +29,7 @@
// MARKER(update_precomp.py): autogen include statement, do not remove
#include "precompiled_sw.hxx"
+#include <comphelper/string.hxx>
#include "actctrl.hxx"
void NumEditAction::Action()
@@ -88,7 +89,7 @@ void NoSpaceEdit::Modify()
String sTemp = GetText();
for(sal_uInt16 i = 0; i < sForbiddenChars.Len(); i++)
{
- sTemp.EraseAllChars( sForbiddenChars.GetChar(i) );
+ sTemp = comphelper::string::remove(sTemp, sForbiddenChars.GetChar(i));
}
sal_uInt16 nDiff = GetText().Len() - sTemp.Len();
if(nDiff)