summaryrefslogtreecommitdiff
path: root/editeng/source/uno/unofield.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-12-19 08:22:49 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-12-19 08:12:46 +0100
commita56955a4b323dd3e78ea49f2b3f3eebca5d5586c (patch)
treee2b59e7e47c8f54543d495e2849eec728d820e29 /editeng/source/uno/unofield.cxx
parent7b1f3135de3211b0b750571ecdcd9dcab752b544 (diff)
sal_Char->char in editeng..eventattacher
Change-Id: Ia9c736042a07a17377db6d88c5bcd2b468e98777 Reviewed-on: https://gerrit.libreoffice.org/85471 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'editeng/source/uno/unofield.cxx')
-rw-r--r--editeng/source/uno/unofield.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/editeng/source/uno/unofield.cxx b/editeng/source/uno/unofield.cxx
index d6fc905078c2..66e2ad13a647 100644
--- a/editeng/source/uno/unofield.cxx
+++ b/editeng/source/uno/unofield.cxx
@@ -499,7 +499,7 @@ std::unique_ptr<SvxFieldData> SvxUnoTextField::CreateFieldData() const throw()
else
aContent = mpImpl->msString2;
- sal_Int32 nPos = aContent.lastIndexOf( sal_Char(' '), 0 );
+ sal_Int32 nPos = aContent.lastIndexOf( ' ', 0 );
if( nPos > 0 )
{
aFirstName = aContent.copy( 0, nPos );