summaryrefslogtreecommitdiff
path: root/sot/inc
diff options
context:
space:
mode:
authorJoseph Powers <jpowers27@cox.net>2011-05-01 06:37:57 -0700
committerJoseph Powers <jpowers27@cox.net>2011-05-01 06:39:41 -0700
commit8157dce1b00e2fe619efe1edf1e8b85d49996788 (patch)
treef93e3927e21c7ee9aef069f537c4d337c8701f2a /sot/inc
parent6b197f7ae400746a2e01d74410b12306552adab2 (diff)
Convert List* to vector<>
Diffstat (limited to 'sot/inc')
-rw-r--r--sot/inc/sot/sotdata.hxx7
1 files changed, 4 insertions, 3 deletions
diff --git a/sot/inc/sot/sotdata.hxx b/sot/inc/sot/sotdata.hxx
index 0e2564ee0ae9..489d50dbb0b7 100644
--- a/sot/inc/sot/sotdata.hxx
+++ b/sot/inc/sot/sotdata.hxx
@@ -34,25 +34,26 @@
#include <tools/solar.h>
#include "sot/sotdllapi.h"
+#include <com/sun/star/datatransfer/DataFlavor.hpp>
#include <vector>
//==================class SotData_Impl====================================
-class List;
class SotFactory;
class SotObjectList;
typedef ::std::vector< SotFactory* > SotFactoryList;
+typedef ::std::vector< com::sun::star::datatransfer::DataFlavor* > tDataFlavorList;
struct SotData_Impl
{
- sal_uInt32 nSvObjCount;
+ sal_uInt32 nSvObjCount;
SotObjectList * pObjectList;
SotFactoryList * pFactoryList;
SotFactory * pSotObjectFactory;
SotFactory * pSotStorageStreamFactory;
SotFactory * pSotStorageFactory;
- List* pDataFlavorList;
+ tDataFlavorList* pDataFlavorList;
SotData_Impl();
};