summaryrefslogtreecommitdiff
path: root/include/sot
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-08-04 08:06:50 +0200
committerNoel Grandin <noel@peralex.com>2015-08-04 08:55:57 +0200
commitf17f89aadc5e88880df0c852289e2fa5b04254ba (patch)
tree13e85b793019f5c4eab1e2282a94a20b896bd769 /include/sot
parent50097a8bb2be903d8a985f6f03f364567bf4643d (diff)
include: inline some use-once typedefs
Change-Id: I064e95c72e5f67178cf2875f457adac241cee529
Diffstat (limited to 'include/sot')
-rw-r--r--include/sot/exchange.hxx6
-rw-r--r--include/sot/filelist.hxx4
2 files changed, 3 insertions, 7 deletions
diff --git a/include/sot/exchange.hxx b/include/sot/exchange.hxx
index be53ba12ddd5..a42e8368215d 100644
--- a/include/sot/exchange.hxx
+++ b/include/sot/exchange.hxx
@@ -41,12 +41,10 @@ struct DataFlavorEx : public ::com::sun::star::datatransfer::DataFlavor
SotClipboardFormatId mnSotId;
};
-typedef ::std::vector< DataFlavorEx > _DataFlavorExVector;
-
// JP 23.03.2001 - this struct is only for "hide" the STD of the vetor,
-// because our makefile filter all this symbols and so nowbody can use
+// because our makefile filter all this symbols and so nobody can use
// these struct in any interfacses.
-struct DataFlavorExVector : public _DataFlavorExVector
+struct DataFlavorExVector : public ::std::vector< DataFlavorEx >
{
};
diff --git a/include/sot/filelist.hxx b/include/sot/filelist.hxx
index c1ccabe7396b..a91f9dbd41b6 100644
--- a/include/sot/filelist.hxx
+++ b/include/sot/filelist.hxx
@@ -25,11 +25,9 @@
#include <vector>
-typedef ::std::vector< OUString > FileStringList;
-
class SOT_DLLPUBLIC FileList : public SvDataCopyStream
{
- FileStringList aStrList;
+ ::std::vector< OUString > aStrList;
protected: