summaryrefslogtreecommitdiff
path: root/sc/source/filter/inc/XclExpChangeTrack.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'sc/source/filter/inc/XclExpChangeTrack.hxx')
-rw-r--r--sc/source/filter/inc/XclExpChangeTrack.hxx23
1 files changed, 0 insertions, 23 deletions
diff --git a/sc/source/filter/inc/XclExpChangeTrack.hxx b/sc/source/filter/inc/XclExpChangeTrack.hxx
index 7149ba3eb851..18b040952b7a 100644
--- a/sc/source/filter/inc/XclExpChangeTrack.hxx
+++ b/sc/source/filter/inc/XclExpChangeTrack.hxx
@@ -29,7 +29,6 @@
#include "ftools.hxx"
#include "excrecds.hxx"
-
// XclExpUserBView - one UserBView record for each user
class XclExpUserBView : public ExcRecord
@@ -49,7 +48,6 @@ public:
virtual sal_Size GetLen() const SAL_OVERRIDE;
};
-
// XclExpUserBViewList - list of UserBView records
class XclExpUserBViewList : public ExcEmptyRec
@@ -76,7 +74,6 @@ public:
virtual void Save( XclExpStream& rStrm ) SAL_OVERRIDE;
};
-
// XclExpUsersViewBegin - begin of view block (one per sheet)
class XclExpUsersViewBegin : public ExcRecord
@@ -93,7 +90,6 @@ public:
virtual sal_Size GetLen() const SAL_OVERRIDE;
};
-
// XclExpUsersViewEnd - end of view block (one per sheet)
class XclExpUsersViewEnd : public ExcRecord
@@ -106,7 +102,6 @@ public:
virtual sal_Size GetLen() const SAL_OVERRIDE;
};
-
// dummy record for "User Names" stream
class XclExpChTr0x0191 : public ExcRecord
@@ -119,7 +114,6 @@ public:
virtual sal_Size GetLen() const SAL_OVERRIDE;
};
-
// dummy record for "User Names" stream
class XclExpChTr0x0198 : public ExcRecord
@@ -132,7 +126,6 @@ public:
virtual sal_Size GetLen() const SAL_OVERRIDE;
};
-
// dummy record for "User Names" stream
class XclExpChTr0x0192 : public ExcRecord
@@ -145,7 +138,6 @@ public:
virtual sal_Size GetLen() const SAL_OVERRIDE;
};
-
// dummy record for "User Names" stream
class XclExpChTr0x0197 : public ExcRecord
@@ -158,7 +150,6 @@ public:
virtual sal_Size GetLen() const SAL_OVERRIDE;
};
-
// dummy record without content
class XclExpChTrEmpty : public ExcRecord
@@ -174,7 +165,6 @@ public:
virtual sal_Size GetLen() const SAL_OVERRIDE;
};
-
// dummy record for "Revision Log" stream
class XclExpChTr0x0195 : public ExcRecord
@@ -189,7 +179,6 @@ public:
virtual sal_Size GetLen() const SAL_OVERRIDE;
};
-
// dummy record for "Revision Log" stream
class XclExpChTr0x0194 : public ExcRecord
@@ -214,7 +203,6 @@ inline XclExpChTr0x0194::XclExpChTr0x0194( const ScChangeTrack& rChangeTrack ) :
{
}
-
// XclExpChTrHeader - header record, includes action count
class XclExpChTrHeader : public ExcRecord
@@ -238,7 +226,6 @@ public:
virtual void SaveXml( XclExpXmlStream& rStrm ) SAL_OVERRIDE;
};
-
// XclExpChTrInfo - header of action group of a user
class XclExpChTrInfo : public ExcRecord
@@ -273,7 +260,6 @@ inline XclExpChTrInfo::XclExpChTrInfo( const OUString& rUsername, const DateTime
memcpy( aGUID, pGUID, 16 );
}
-
// XclExpChTrTabIdBuffer - buffer for tab id's
class XclExpChTrTabIdBuffer
@@ -301,7 +287,6 @@ public:
{ memcpy( pDest, pBuffer, sizeof(sal_uInt16) * GetBufferCount() ); }
};
-
// XclExpChTrTabId - tab id record
class XclExpChTrTabId : public ExcRecord
@@ -329,7 +314,6 @@ public:
virtual void SaveXml( XclExpXmlStream& rStrm ) SAL_OVERRIDE;
};
-
// XclExpChTrAction - base class for action records
class XclExpChTrAction : public ExcRecord
@@ -425,7 +409,6 @@ inline void XclExpChTrAction::WriteTabId( XclExpStream& rStrm, SCTAB nTab ) cons
rStrm << GetTabId( nTab );
}
-
// XclExpChTrData - cell content itself
struct XclExpChTrData
@@ -452,7 +435,6 @@ struct XclExpChTrData
const XclExpChTrTabIdBuffer& rTabIdBuffer );
};
-
// XclExpChTrCellContent - changed cell content
class XclExpChTrCellContent : public XclExpChTrAction, protected XclExpRoot
@@ -486,7 +468,6 @@ public:
virtual void SaveXml( XclExpXmlStream& rStrm ) SAL_OVERRIDE;
};
-
// XclExpChTrInsert - insert/delete columns/rows
class XclExpChTrInsert : public XclExpChTrAction
@@ -515,7 +496,6 @@ public:
virtual void SaveXml( XclExpXmlStream& rStrm ) SAL_OVERRIDE;
};
-
// XclExpChTrInsertTab - insert table
class XclExpChTrInsertTab : public XclExpChTrAction, protected XclExpRoot
@@ -539,7 +519,6 @@ public:
virtual void SaveXml( XclExpXmlStream& rStrm ) SAL_OVERRIDE;
};
-
// XclExpChTrMoveRange - move cell range
class XclExpChTrMoveRange : public XclExpChTrAction
@@ -566,7 +545,6 @@ public:
virtual void SaveXml( XclExpXmlStream& rStrm ) SAL_OVERRIDE;
};
-
// XclExpChTr0x019A - additional data for delete action
class XclExpChTr0x014A : public XclExpChTrInsert
@@ -584,7 +562,6 @@ public:
virtual void SaveXml( XclExpXmlStream& rStrm ) SAL_OVERRIDE;
};
-
// XclExpChangeTrack - exports the "Revision Log" stream
class XclExpChangeTrack : protected XclExpRoot