summaryrefslogtreecommitdiff
path: root/shell/source/win32/simplemail/senddoc.cxx
diff options
context:
space:
mode:
authorArkadiy Illarionov <qarkai@gmail.com>2018-06-20 22:40:45 +0300
committerNoel Grandin <noel.grandin@collabora.co.uk>2018-06-23 13:13:14 +0200
commit6441c2f2e20bc424c6a4cd1c2d704710e4d80346 (patch)
tree83859a71b3f28a6305030e369c88a7f22b0918da /shell/source/win32/simplemail/senddoc.cxx
parent849d5d9903e54c92682227dfad545664e4bbda53 (diff)
tdf#96099 Remove trivial std::vector typedefs in sd, sfx2, shell
Change-Id: Ib3708c9650f273de4a2f549d2ce9f2465bd37d6c Reviewed-on: https://gerrit.libreoffice.org/56206 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'shell/source/win32/simplemail/senddoc.cxx')
-rw-r--r--shell/source/win32/simplemail/senddoc.cxx7
1 files changed, 3 insertions, 4 deletions
diff --git a/shell/source/win32/simplemail/senddoc.cxx b/shell/source/win32/simplemail/senddoc.cxx
index 636a0d862f4e..e4f9c3b3dfd9 100644
--- a/shell/source/win32/simplemail/senddoc.cxx
+++ b/shell/source/win32/simplemail/senddoc.cxx
@@ -42,7 +42,6 @@
void dumpParameter();
#endif
-typedef std::vector<std::wstring> StringList_t;
typedef std::vector<MapiRecipDescW> MapiRecipientList_t;
typedef std::vector<MapiFileDescW> MapiAttachmentList_t;
@@ -55,9 +54,9 @@ namespace /* private */
std::wstring gFrom;
std::wstring gSubject;
std::wstring gBody;
- StringList_t gTo;
- StringList_t gCc;
- StringList_t gBcc;
+ std::vector<std::wstring> gTo;
+ std::vector<std::wstring> gCc;
+ std::vector<std::wstring> gBcc;
// Keep temp filepath and displayed name
std::vector<std::pair<std::wstring, std::wstring>> gAttachments;
int gMapiFlags = 0;