diff options
author | Noel Grandin <noel@peralex.com> | 2014-09-26 13:12:52 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2014-09-26 13:13:42 +0200 |
commit | ed085a6d2043e1da6b50a9d00742b812c9ff0247 (patch) | |
tree | 2301c4fd94cecc102111b2ad80b253b9883e0552 /include/sot | |
parent | dd2b8472a97d1ab01111f9969b046a1c2ec5586a (diff) |
cleanup GUID/ClsId/CLSID types
- rename GUID to SvGUID so we don't need an #ifdef WIN32
- drop ClsId struct, since it is used interchangeably with GUID and has
the same structure
Change-Id: Idf5c14c82a6861ef585fb57896a9b12cfe40374c
Diffstat (limited to 'include/sot')
-rw-r--r-- | include/sot/stg.hxx | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/include/sot/stg.hxx b/include/sot/stg.hxx index b42ed4c7f590..2d8b1d1d1186 100644 --- a/include/sot/stg.hxx +++ b/include/sot/stg.hxx @@ -43,12 +43,7 @@ class StgIo; class StgDirEntry; class StgStrm; class SvGlobalName; -struct ClsId -{ - sal_Int32 n1; - sal_Int16 n2, n3; - sal_uInt8 n4, n5, n6, n7, n8, n9, n10, n11; -}; +typedef struct SvGUID ClsId; class SOT_DLLPUBLIC StorageBase : public SvRefBase { |