diff options
author | Noel Grandin <noel@peralex.com> | 2015-08-03 15:12:45 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2015-08-04 08:55:56 +0200 |
commit | 8e08edb1d9b774b51c81b13a5f374b99c75e54fe (patch) | |
tree | 76bd7537210e8d8838737326787f88d8a9c5f1bb /dtrans | |
parent | 2886f830a9c7871974f9afbc1fdc46bbae468811 (diff) |
filter,desktop,dbaccess: inline some use-once typedefs
Change-Id: I35f256a11b211c3cb977ae76b5b561efbfd13b9d
Diffstat (limited to 'dtrans')
-rw-r--r-- | dtrans/source/win32/dtobj/FmtFilter.cxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/dtrans/source/win32/dtobj/FmtFilter.cxx b/dtrans/source/win32/dtobj/FmtFilter.cxx index 406376289ba7..e92d4556ad8c 100644 --- a/dtrans/source/win32/dtobj/FmtFilter.cxx +++ b/dtrans/source/win32/dtobj/FmtFilter.cxx @@ -454,7 +454,6 @@ std::wstring getShellLinkTarget(const std::wstring& aLnkFile) } typedef std::vector<std::wstring> FileList_t; -typedef FileList_t::value_type FileList_ValueType_t; typedef Sequence<sal_Int8> ByteSequence_t; /* Calculate the size required for turning a string list into @@ -470,7 +469,7 @@ size_t CalcSizeForStringListBuffer(const FileList_t& fileList) { size += iter->length() + 1; // length including terminating '\0' } - return (size * sizeof(FileList_ValueType_t::value_type)); + return (size * sizeof(FileList_t::value_type::value_type)); } ByteSequence_t FileListToByteSequence(const FileList_t& fileList) |