diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-05-29 15:04:53 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2020-06-02 08:39:44 +0200 |
commit | 468e8d53fbb07dce271a1f7fabf5711993e01eb7 (patch) | |
tree | 60a0474d2789904e17ff22623f01175c11836647 /sw | |
parent | e9dbdc9fc6ff943650e6e18986ed1cce913971ef (diff) |
inline some use-once typedefs
Change-Id: I335e0c5cf7944efa487e4535a9e6a5baab2f36dd
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/95140
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sw')
-rw-r--r-- | sw/source/filter/ww8/writerwordglue.cxx | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/sw/source/filter/ww8/writerwordglue.cxx b/sw/source/filter/ww8/writerwordglue.cxx index 8ed09d51099b..7c34c416208c 100644 --- a/sw/source/filter/ww8/writerwordglue.cxx +++ b/sw/source/filter/ww8/writerwordglue.cxx @@ -550,13 +550,9 @@ namespace sw } typedef std::pair<int32_t, bool> DirEntry; - typedef std::vector<DirEntry> DirChanges; - typedef std::pair<sal_Int32, sal_uInt16> ScriptEntry; - typedef std::vector<ScriptEntry> ScriptChanges; - - DirChanges aDirChanges; - ScriptChanges aScripts; + std::vector<DirEntry> aDirChanges; + std::vector<ScriptEntry> aScripts; UBiDiDirection eDefaultDir = bParaIsRTL ? UBIDI_RTL : UBIDI_LTR; UErrorCode nError = U_ZERO_ERROR; |