diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2016-12-05 09:27:09 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2016-12-05 12:49:02 +0200 |
commit | 50151db9f740afee7f11a10cc5c61b437bf87caf (patch) | |
tree | b41921d86a46931bc06457172994fb3a7dabe92b /editeng | |
parent | bfde4866e07746eafa2f0d6173c29d805cc35ad0 (diff) |
convert FSysStyle to o3tl::typed_flags
Change-Id: I58a63a0e6f619442f21827064644ecd8ca57b8ff
Diffstat (limited to 'editeng')
-rw-r--r-- | editeng/source/items/flditem.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/editeng/source/items/flditem.cxx b/editeng/source/items/flditem.cxx index f235b5ea8f6e..8edcd9c2687a 100644 --- a/editeng/source/items/flditem.cxx +++ b/editeng/source/items/flditem.cxx @@ -985,14 +985,14 @@ OUString SvxExtFileField::GetFormatted() const switch( eFormat ) { case SVXFILEFORMAT_FULLPATH: - aString = aURLObj.getFSysPath(INetURLObject::FSYS_DETECT); + aString = aURLObj.getFSysPath(FSysStyle::Detect); break; case SVXFILEFORMAT_PATH: aURLObj.removeSegment(INetURLObject::LAST_SEGMENT, false); // #101742# Leave trailing slash at the pathname aURLObj.setFinalSlash(); - aString = aURLObj.getFSysPath(INetURLObject::FSYS_DETECT); + aString = aURLObj.getFSysPath(FSysStyle::Detect); break; case SVXFILEFORMAT_NAME: |