diff --git a/ASCOfficeXlsFile2/source/XlsFormat/Binary/CFStreamCacheReader.cpp b/ASCOfficeXlsFile2/source/XlsFormat/Binary/CFStreamCacheReader.cpp index e43bbb30cb..e1bedb04e7 100644 --- a/ASCOfficeXlsFile2/source/XlsFormat/Binary/CFStreamCacheReader.cpp +++ b/ASCOfficeXlsFile2/source/XlsFormat/Binary/CFStreamCacheReader.cpp @@ -409,7 +409,7 @@ bool FileStreamCacheReader::isEOF() } //--------------------------------------------------------------------------------------------------------- -BinaryStreamCacheReader::BinaryStreamCacheReader( std::shared_ptr binaryStream, GlobalWorkbookInfoPtr global_info) +BinaryStreamCacheReader::BinaryStreamCacheReader( boost::shared_ptr binaryStream, GlobalWorkbookInfoPtr global_info) : StreamCacheReader(global_info), binaryStream_(binaryStream) { diff --git a/ASCOfficeXlsFile2/source/XlsFormat/Binary/CFStreamCacheReader.h b/ASCOfficeXlsFile2/source/XlsFormat/Binary/CFStreamCacheReader.h index ec13d6eec8..7f62136c55 100644 --- a/ASCOfficeXlsFile2/source/XlsFormat/Binary/CFStreamCacheReader.h +++ b/ASCOfficeXlsFile2/source/XlsFormat/Binary/CFStreamCacheReader.h @@ -121,7 +121,7 @@ private: class BinaryStreamCacheReader : public StreamCacheReader { public: - BinaryStreamCacheReader(std::shared_ptr binaryStream, const GlobalWorkbookInfoPtr global_info); + BinaryStreamCacheReader(boost::shared_ptr binaryStream, const GlobalWorkbookInfoPtr global_info); virtual ~BinaryStreamCacheReader(); CFRecordPtr getNextRecord(const CFRecordType::TypeId desirable_type, const bool gen_except = false) override; @@ -132,6 +132,6 @@ private: const size_t readFromStream(const size_t num_of_records_min_necessary) override; const int GetRecordPosition() override; void SetRecordPosition(const int) override; - std::shared_ptr binaryStream_; + boost::shared_ptr binaryStream_; }; } // namespace XLS diff --git a/ASCOfficeXlsFile2/source/XlsFormat/Logic/BaseObject.h b/ASCOfficeXlsFile2/source/XlsFormat/Logic/BaseObject.h index 6348797a85..938c70a084 100644 --- a/ASCOfficeXlsFile2/source/XlsFormat/Logic/BaseObject.h +++ b/ASCOfficeXlsFile2/source/XlsFormat/Logic/BaseObject.h @@ -55,7 +55,7 @@ class BaseObject { public: BaseObject(){} - ~BaseObject(){} + virtual ~BaseObject(){} virtual boost::shared_ptr clone() = 0; diff --git a/ASCOfficeXlsFile2/source/XlsFormat/Logic/Biff_records/Row.cpp b/ASCOfficeXlsFile2/source/XlsFormat/Logic/Biff_records/Row.cpp index ef908f654a..49b7483c38 100644 --- a/ASCOfficeXlsFile2/source/XlsFormat/Logic/Biff_records/Row.cpp +++ b/ASCOfficeXlsFile2/source/XlsFormat/Logic/Biff_records/Row.cpp @@ -87,6 +87,10 @@ void Row::readFields(CFRecord& record) else { + //xlsb + _UINT32 ccolspan; + std::vector rgBrtColspan; + global_info_ = record.getGlobalWorkbookInfo(); record >> rw >> ixfe_val >> miyRw; diff --git a/ASCOfficeXlsFile2/source/XlsFormat/Logic/Biff_records/Row.h b/ASCOfficeXlsFile2/source/XlsFormat/Logic/Biff_records/Row.h index 93b82ee42c..328125fd9f 100644 --- a/ASCOfficeXlsFile2/source/XlsFormat/Logic/Biff_records/Row.h +++ b/ASCOfficeXlsFile2/source/XlsFormat/Logic/Biff_records/Row.h @@ -79,11 +79,7 @@ namespace XLS bool fExDes; //fExtraDsc in biff12 bool fPhonetic; //fPhShow in biff12 - bool bValid; - - //xlsb - _UINT32 ccolspan; - std::vector rgBrtColspan; + bool bValid; }; diff --git a/ASCOfficeXlsFile2/source/XlsFormat/Logic/BinProcessor.cpp b/ASCOfficeXlsFile2/source/XlsFormat/Logic/BinProcessor.cpp index 3f339eef29..d28064726d 100644 --- a/ASCOfficeXlsFile2/source/XlsFormat/Logic/BinProcessor.cpp +++ b/ASCOfficeXlsFile2/source/XlsFormat/Logic/BinProcessor.cpp @@ -62,19 +62,19 @@ const int BinProcessor::repeated(BaseObject& object, const int fromN, const int bool at_least_one_read = false; for(int i = 0; i < fromN; ++i) - { - mandatory(*object.clone()); + { + mandatory(*object.clone()); count++; - at_least_one_read = true; + at_least_one_read = true; } for(int j = fromN; j < toN || !toN/*infinity*/; ++j) - { - if(!optional(*object.clone())) + { + if(!optional(*object.clone())) { break; } count++; - at_least_one_read = true; + at_least_one_read = true; } return count; } diff --git a/ASCOfficeXlsFile2/source/XlsFormat/Logic/XlsElementsType.h b/ASCOfficeXlsFile2/source/XlsFormat/Logic/XlsElementsType.h index 5a4bc6e259..214d7be4dd 100644 --- a/ASCOfficeXlsFile2/source/XlsFormat/Logic/XlsElementsType.h +++ b/ASCOfficeXlsFile2/source/XlsFormat/Logic/XlsElementsType.h @@ -912,6 +912,10 @@ enum ElementType typePCDIDT, typeFRTPIVOTCACHEDEF, typePCD14, + typeTABLECELL, + typeDATACELL, + typeFMLACELL, + typeSHRFMLACELL, }; diff --git a/Common/DocxFormat/Source/DocxFormat/Drawing/DrawingExt.cpp b/Common/DocxFormat/Source/DocxFormat/Drawing/DrawingExt.cpp index 926b58413c..e85ff8c49b 100644 --- a/Common/DocxFormat/Source/DocxFormat/Drawing/DrawingExt.cpp +++ b/Common/DocxFormat/Source/DocxFormat/Drawing/DrawingExt.cpp @@ -1085,8 +1085,8 @@ namespace OOX oExt->m_sUri.Init(); oExt->m_sUri->append(_T("{78C0D931-6437-407d-A8EE-F0AAD7539E65}")); - auto arCF14 = static_cast(ptr->m_CONDITIONALFORMATTINGS.get())->m_arCONDITIONALFORMATTING14; - for(auto &item : arCF14) + auto oCONDITIONALFORMATTINGS = static_cast(ptr->m_CONDITIONALFORMATTINGS.get()); + for(auto &item : oCONDITIONALFORMATTINGS->m_arCONDITIONALFORMATTING14) oExt->m_arrConditionalFormatting.push_back(new OOX::Spreadsheet::CConditionalFormatting(item)); if (oExt) diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/ACBegin.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/ACBegin.h index d32c14ef68..36b118e26d 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/ACBegin.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/ACBegin.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(ACBegin) public: ACBegin(); - virtual ~ACBegin(); + ~ACBegin(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/ACEnd.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/ACEnd.h index ed7c43f020..5336aa65f5 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/ACEnd.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/ACEnd.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(ACEnd) public: ACEnd(); - virtual ~ACEnd(); + ~ACEnd(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/AFilterDateGroupItem.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/AFilterDateGroupItem.h index cc05ac8297..ac02a2255c 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/AFilterDateGroupItem.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/AFilterDateGroupItem.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(AFilterDateGroupItem) public: AFilterDateGroupItem(); - virtual ~AFilterDateGroupItem(); + ~AFilterDateGroupItem(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/AbsPath15.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/AbsPath15.h index ff761fcadc..599ec84d1d 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/AbsPath15.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/AbsPath15.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(AbsPath15) public: AbsPath15(); - virtual ~AbsPath15(); + ~AbsPath15(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/ActiveX.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/ActiveX.h index 267fa8ea21..56b5878b0f 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/ActiveX.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/ActiveX.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(ActiveX) public: ActiveX(); - virtual ~ActiveX(); + ~ActiveX(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginAFilter.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginAFilter.h index a8bc05087e..a9f1acfeb5 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginAFilter.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginAFilter.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginAFilter) public: BeginAFilter(); - virtual ~BeginAFilter(); + ~BeginAFilter(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginActiveXControls.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginActiveXControls.h index bbe24d1b83..f9c81169e1 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginActiveXControls.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginActiveXControls.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginActiveXControls) public: BeginActiveXControls(); - virtual ~BeginActiveXControls(); + ~BeginActiveXControls(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginAutoSortScope.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginAutoSortScope.h index be974e0490..b6686795fb 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginAutoSortScope.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginAutoSortScope.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginAutoSortScope) public: BeginAutoSortScope(); - virtual ~BeginAutoSortScope(); + ~BeginAutoSortScope(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginBook.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginBook.h index b824cb4700..1e838e07af 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginBook.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginBook.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginBook) public: BeginBook(); - virtual ~BeginBook(); + ~BeginBook(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginBookViews.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginBookViews.h index 3a1cd16a77..b73765173c 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginBookViews.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginBookViews.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginBookViews) public: BeginBookViews(); - virtual ~BeginBookViews(); + ~BeginBookViews(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginBorders.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginBorders.h index 70dd94cd84..3d17457b50 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginBorders.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginBorders.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginBorders) public: BeginBorders(); - virtual ~BeginBorders(); + ~BeginBorders(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginBundleShs.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginBundleShs.h index b6089d1bd7..118e6096a2 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginBundleShs.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginBundleShs.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginBundleShs) public: BeginBundleShs(); - virtual ~BeginBundleShs(); + ~BeginBundleShs(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginCFRule.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginCFRule.h index 80a04c6ba4..7f831aac26 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginCFRule.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginCFRule.h @@ -49,7 +49,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginCFRule) public: BeginCFRule(const XLS::CellRef& cell_base_ref); - virtual ~BeginCFRule(); + ~BeginCFRule(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginCFRule14.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginCFRule14.h index 366c6923dd..01e33d8a35 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginCFRule14.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginCFRule14.h @@ -50,7 +50,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginCFRule14) public: BeginCFRule14(); - virtual ~BeginCFRule14(); + ~BeginCFRule14(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginCellStyleXFs.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginCellStyleXFs.h index f2e6fa1ae4..8a8fdc5314 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginCellStyleXFs.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginCellStyleXFs.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginCellStyleXFs) public: BeginCellStyleXFs(); - virtual ~BeginCellStyleXFs(); + ~BeginCellStyleXFs(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginCellXFs.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginCellXFs.h index 97acf53d97..84842aa499 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginCellXFs.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginCellXFs.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginCellXFs) public: BeginCellXFs(); - virtual ~BeginCellXFs(); + ~BeginCellXFs(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginColBrk.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginColBrk.h index 9d28e6649e..d4f6c12e02 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginColBrk.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginColBrk.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginColBrk) public: BeginColBrk(); - virtual ~BeginColBrk(); + ~BeginColBrk(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginColInfos.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginColInfos.h index 35d835ce38..bd1ced4c23 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginColInfos.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginColInfos.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginColInfos) public: BeginColInfos(); - virtual ~BeginColInfos(); + ~BeginColInfos(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginColorPalette.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginColorPalette.h index b368f4747c..ce2b6893bc 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginColorPalette.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginColorPalette.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginColorPalette) public: BeginColorPalette(); - virtual ~BeginColorPalette(); + ~BeginColorPalette(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginColorScale.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginColorScale.h index b2a23800be..6d3fec4557 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginColorScale.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginColorScale.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginColorScale) public: BeginColorScale(); - virtual ~BeginColorScale(); + ~BeginColorScale(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginColorScale14.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginColorScale14.h index 8fe42b730b..bf4976f643 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginColorScale14.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginColorScale14.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginColorScale14) public: BeginColorScale14(); - virtual ~BeginColorScale14(); + ~BeginColorScale14(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginComment.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginComment.h index 95131e65b2..5fe3e00e3e 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginComment.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginComment.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginComment) public: BeginComment(); - virtual ~BeginComment(); + ~BeginComment(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginCommentAuthors.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginCommentAuthors.h index ad424647cd..951da25d9f 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginCommentAuthors.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginCommentAuthors.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginCommentAuthors) public: BeginCommentAuthors(); - virtual ~BeginCommentAuthors(); + ~BeginCommentAuthors(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginCommentList.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginCommentList.h index a2d7cce266..d8db41d438 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginCommentList.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginCommentList.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginCommentList) public: BeginCommentList(); - virtual ~BeginCommentList(); + ~BeginCommentList(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginComments.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginComments.h index 6f077244f9..1e548e538a 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginComments.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginComments.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginComments) public: BeginComments(); - virtual ~BeginComments(); + ~BeginComments(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginConditionalFormatting.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginConditionalFormatting.h index 56f6b13402..275807dbb1 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginConditionalFormatting.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginConditionalFormatting.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginConditionalFormatting) public: BeginConditionalFormatting(); - virtual ~BeginConditionalFormatting(); + ~BeginConditionalFormatting(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginConditionalFormatting14.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginConditionalFormatting14.h index 89f8822d54..90376edb8b 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginConditionalFormatting14.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginConditionalFormatting14.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginConditionalFormatting14) public: BeginConditionalFormatting14(); - virtual ~BeginConditionalFormatting14(); + ~BeginConditionalFormatting14(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginConditionalFormattings.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginConditionalFormattings.h index d35c75cf9d..1bdd90e502 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginConditionalFormattings.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginConditionalFormattings.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginConditionalFormattings) public: BeginConditionalFormattings(); - virtual ~BeginConditionalFormattings(); + ~BeginConditionalFormattings(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginCsViews.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginCsViews.h index 846a2cf822..85b4dcddfb 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginCsViews.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginCsViews.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginCsViews) public: BeginCsViews(); - virtual ~BeginCsViews(); + ~BeginCsViews(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginCustomFilters.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginCustomFilters.h index a348ff387c..9c2f476ab6 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginCustomFilters.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginCustomFilters.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginCustomFilters) public: BeginCustomFilters(); - virtual ~BeginCustomFilters(); + ~BeginCustomFilters(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginCustomFilters14.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginCustomFilters14.h index eb36d65b16..34c80395e2 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginCustomFilters14.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginCustomFilters14.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginCustomFilters14) public: BeginCustomFilters14(); - virtual ~BeginCustomFilters14(); + ~BeginCustomFilters14(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginCustomRichFilters.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginCustomRichFilters.h index 1b0ad5e0b2..be6eb6140e 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginCustomRichFilters.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginCustomRichFilters.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginCustomRichFilters) public: BeginCustomRichFilters(); - virtual ~BeginCustomRichFilters(); + ~BeginCustomRichFilters(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginDCon.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginDCon.h index f93a5b3ec7..8163a601cf 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginDCon.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginDCon.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginDCon) public: BeginDCon(); - virtual ~BeginDCon(); + ~BeginDCon(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginDRefs.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginDRefs.h index 238d1b6f7e..35af5dbd14 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginDRefs.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginDRefs.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginDRefs) public: BeginDRefs(); - virtual ~BeginDRefs(); + ~BeginDRefs(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginDVals.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginDVals.h index 688fc6f6f0..a09f4012d9 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginDVals.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginDVals.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginDVals) public: BeginDVals(); - virtual ~BeginDVals(); + ~BeginDVals(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginDVals14.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginDVals14.h index 6a7663d5b8..1ba3c3ca17 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginDVals14.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginDVals14.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginDVals14) public: BeginDVals14(); - virtual ~BeginDVals14(); + ~BeginDVals14(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginDXF14s.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginDXF14s.h index f530c2458e..1e969a6691 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginDXF14s.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginDXF14s.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginDXF14s) public: BeginDXF14s(); - virtual ~BeginDXF14s(); + ~BeginDXF14s(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginDXFs.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginDXFs.h index 4d4097bab4..53adaa3b5d 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginDXFs.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginDXFs.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginDXFs) public: BeginDXFs(); - virtual ~BeginDXFs(); + ~BeginDXFs(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginDXFs15.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginDXFs15.h index 155394988c..5c489b7408 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginDXFs15.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginDXFs15.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginDXFs15) public: BeginDXFs15(); - virtual ~BeginDXFs15(); + ~BeginDXFs15(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginDataFeedPr15.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginDataFeedPr15.h index daabac6c78..a8be1771b7 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginDataFeedPr15.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginDataFeedPr15.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginDataFeedPr15) public: BeginDataFeedPr15(); - virtual ~BeginDataFeedPr15(); + ~BeginDataFeedPr15(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginDatabar.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginDatabar.h index edd0863bab..3252dd1f8c 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginDatabar.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginDatabar.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginDatabar) public: BeginDatabar(); - virtual ~BeginDatabar(); + ~BeginDatabar(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginDatabar14.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginDatabar14.h index 143a3027b5..4cd7244024 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginDatabar14.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginDatabar14.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginDatabar14) public: BeginDatabar14(); - virtual ~BeginDatabar14(); + ~BeginDatabar14(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginDbTables15.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginDbTables15.h index 7bbd275413..1cd4625f37 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginDbTables15.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginDbTables15.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginDbTables15) public: BeginDbTables15(); - virtual ~BeginDbTables15(); + ~BeginDbTables15(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginDeletedName.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginDeletedName.h index 5daf9a9c88..eff371c8a6 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginDeletedName.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginDeletedName.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginDeletedName) public: BeginDeletedName(); - virtual ~BeginDeletedName(); + ~BeginDeletedName(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginDeletedNames.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginDeletedNames.h index 0d13d308cb..475c5d5229 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginDeletedNames.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginDeletedNames.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginDeletedNames) public: BeginDeletedNames(); - virtual ~BeginDeletedNames(); + ~BeginDeletedNames(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginDim.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginDim.h index d9856cc04a..4ae14e1cf6 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginDim.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginDim.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginDim) public: BeginDim(); - virtual ~BeginDim(); + ~BeginDim(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginDims.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginDims.h index 945f048de6..2735b2dda0 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginDims.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginDims.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginDims) public: BeginDims(); - virtual ~BeginDims(); + ~BeginDims(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginECDbProps.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginECDbProps.h index 18f4f048c4..7d5f10866a 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginECDbProps.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginECDbProps.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginECDbProps) public: BeginECDbProps(); - virtual ~BeginECDbProps(); + ~BeginECDbProps(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginECOlapProps.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginECOlapProps.h index 2e7005b091..b7adc99764 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginECOlapProps.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginECOlapProps.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginECOlapProps) public: BeginECOlapProps(); - virtual ~BeginECOlapProps(); + ~BeginECOlapProps(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginECParam.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginECParam.h index 3f7cf265d6..702b7c86da 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginECParam.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginECParam.h @@ -46,7 +46,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginECParam) public: BeginECParam(); - virtual ~BeginECParam(); + ~BeginECParam(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginECParams.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginECParams.h index 5a156467fd..6b23fdedbb 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginECParams.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginECParams.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginECParams) public: BeginECParams(); - virtual ~BeginECParams(); + ~BeginECParams(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginECTWFldInfoLst.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginECTWFldInfoLst.h index 2b37f704d6..fec7063246 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginECTWFldInfoLst.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginECTWFldInfoLst.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginECTWFldInfoLst) public: BeginECTWFldInfoLst(); - virtual ~BeginECTWFldInfoLst(); + ~BeginECTWFldInfoLst(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginECTWFldInfoLst15.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginECTWFldInfoLst15.h index a2c120b998..bc990c4282 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginECTWFldInfoLst15.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginECTWFldInfoLst15.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginECTWFldInfoLst15) public: BeginECTWFldInfoLst15(); - virtual ~BeginECTWFldInfoLst15(); + ~BeginECTWFldInfoLst15(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginECTwFldInfo.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginECTwFldInfo.h index 1a493f187a..ac75798833 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginECTwFldInfo.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginECTwFldInfo.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginECTwFldInfo) public: BeginECTwFldInfo(); - virtual ~BeginECTwFldInfo(); + ~BeginECTwFldInfo(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginECTwFldInfo15.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginECTwFldInfo15.h index db472765e7..6d03a36e4d 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginECTwFldInfo15.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginECTwFldInfo15.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginECTwFldInfo15) public: BeginECTwFldInfo15(); - virtual ~BeginECTwFldInfo15(); + ~BeginECTwFldInfo15(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginECTxtWiz.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginECTxtWiz.h index 0e1898da5e..4111fb71f8 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginECTxtWiz.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginECTxtWiz.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginECTxtWiz) public: BeginECTxtWiz(); - virtual ~BeginECTxtWiz(); + ~BeginECTxtWiz(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginECTxtWiz15.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginECTxtWiz15.h index 1c98e15225..b2b6892e79 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginECTxtWiz15.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginECTxtWiz15.h @@ -46,7 +46,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginECTxtWiz15) public: BeginECTxtWiz15(); - virtual ~BeginECTxtWiz15(); + ~BeginECTxtWiz15(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginECWebProps.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginECWebProps.h index 3255f68fd2..c5e41b64cf 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginECWebProps.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginECWebProps.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginECWebProps) public: BeginECWebProps(); - virtual ~BeginECWebProps(); + ~BeginECWebProps(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginEcWpTables.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginEcWpTables.h index 8d7664468d..090e203dbb 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginEcWpTables.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginEcWpTables.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginEcWpTables) public: BeginEcWpTables(); - virtual ~BeginEcWpTables(); + ~BeginEcWpTables(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginExtConn14.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginExtConn14.h index 42476997ca..4b05a660ea 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginExtConn14.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginExtConn14.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginExtConn14) public: BeginExtConn14(); - virtual ~BeginExtConn14(); + ~BeginExtConn14(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginExtConn15.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginExtConn15.h index a879367063..df7bd45792 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginExtConn15.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginExtConn15.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginExtConn15) public: BeginExtConn15(); - virtual ~BeginExtConn15(); + ~BeginExtConn15(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginExtConnection.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginExtConnection.h index f34f65ac43..1e8d66be99 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginExtConnection.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginExtConnection.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginExtConnection) public: BeginExtConnection(); - virtual ~BeginExtConnection(); + ~BeginExtConnection(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginExtConnections.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginExtConnections.h index e2ddc1b43c..9d34024f04 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginExtConnections.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginExtConnections.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginExtConnections) public: BeginExtConnections(); - virtual ~BeginExtConnections(); + ~BeginExtConnections(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginExternals.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginExternals.h index 703a43a34a..ce8e4efb94 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginExternals.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginExternals.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginExternals) public: BeginExternals(); - virtual ~BeginExternals(); + ~BeginExternals(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginFills.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginFills.h index 946b19f58e..ab6268621b 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginFills.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginFills.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginFills) public: BeginFills(); - virtual ~BeginFills(); + ~BeginFills(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginFilterColumn.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginFilterColumn.h index b36e7a77c9..50487b5db7 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginFilterColumn.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginFilterColumn.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginFilterColumn) public: BeginFilterColumn(); - virtual ~BeginFilterColumn(); + ~BeginFilterColumn(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginFilters.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginFilters.h index 0a15a31863..6ab74a96f8 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginFilters.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginFilters.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginFilters) public: BeginFilters(); - virtual ~BeginFilters(); + ~BeginFilters(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginFmts.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginFmts.h index c9cae7912b..63c7db8500 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginFmts.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginFmts.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginFmts) public: BeginFmts(); - virtual ~BeginFmts(); + ~BeginFmts(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginFnGroup.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginFnGroup.h index 84dabf2e84..3106d3a3b8 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginFnGroup.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginFnGroup.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginFnGroup) public: BeginFnGroup(); - virtual ~BeginFnGroup(); + ~BeginFnGroup(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginFonts.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginFonts.h index 10ea068661..a3a4fe488e 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginFonts.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginFonts.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginFonts) public: BeginFonts(); - virtual ~BeginFonts(); + ~BeginFonts(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginHeaderFooter.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginHeaderFooter.h index 7ae54adb88..56e6b84300 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginHeaderFooter.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginHeaderFooter.h @@ -48,7 +48,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginHeaderFooter) public: BeginHeaderFooter(); - virtual ~BeginHeaderFooter(); + ~BeginHeaderFooter(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginISXTHCols.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginISXTHCols.h index 5d518f3fd4..5cb5a2c002 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginISXTHCols.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginISXTHCols.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginISXTHCols) public: BeginISXTHCols(); - virtual ~BeginISXTHCols(); + ~BeginISXTHCols(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginISXTHRws.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginISXTHRws.h index f1d6936f86..3a7f7bad05 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginISXTHRws.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginISXTHRws.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginISXTHRws) public: BeginISXTHRws(); - virtual ~BeginISXTHRws(); + ~BeginISXTHRws(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginISXVDCols.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginISXVDCols.h index e349473f33..adb05e3fff 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginISXVDCols.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginISXVDCols.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginISXVDCols) public: BeginISXVDCols(); - virtual ~BeginISXVDCols(); + ~BeginISXVDCols(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginISXVDRws.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginISXVDRws.h index b9875ac453..20622ba31b 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginISXVDRws.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginISXVDRws.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginISXVDRws) public: BeginISXVDRws(); - virtual ~BeginISXVDRws(); + ~BeginISXVDRws(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginISXVIs.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginISXVIs.h index ce0e59ab6a..e640a435f6 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginISXVIs.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginISXVIs.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginISXVIs) public: BeginISXVIs(_UINT32 cisxvis); - virtual ~BeginISXVIs(); + ~BeginISXVIs(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginIconSet.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginIconSet.h index 754f096753..e9b69a482f 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginIconSet.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginIconSet.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginIconSet) public: BeginIconSet(); - virtual ~BeginIconSet(); + ~BeginIconSet(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginIconSet14.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginIconSet14.h index 6a788c4964..4ced9af222 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginIconSet14.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginIconSet14.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginIconSet14) public: BeginIconSet14(); - virtual ~BeginIconSet14(); + ~BeginIconSet14(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginIndexedColors.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginIndexedColors.h index ffe89a54d5..39dbeb054f 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginIndexedColors.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginIndexedColors.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginIndexedColors) public: BeginIndexedColors(); - virtual ~BeginIndexedColors(); + ~BeginIndexedColors(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginItemUniqueNames.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginItemUniqueNames.h index 2fa4445ff8..2b1516e2ac 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginItemUniqueNames.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginItemUniqueNames.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginItemUniqueNames) public: BeginItemUniqueNames(); - virtual ~BeginItemUniqueNames(); + ~BeginItemUniqueNames(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginList.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginList.h index 7a9abdeaf3..39cc4888c0 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginList.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginList.h @@ -46,7 +46,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginList) public: BeginList(); - virtual ~BeginList(); + ~BeginList(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginListCol.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginListCol.h index f2c2a5073b..29abb04df0 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginListCol.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginListCol.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginListCol) public: BeginListCol(); - virtual ~BeginListCol(); + ~BeginListCol(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginListCols.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginListCols.h index 28d425b8b5..a1d634848b 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginListCols.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginListCols.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginListCols) public: BeginListCols(); - virtual ~BeginListCols(); + ~BeginListCols(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginListParts.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginListParts.h index cbb8ea93f0..6fdc18c7e3 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginListParts.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginListParts.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginListParts) public: BeginListParts(); - virtual ~BeginListParts(); + ~BeginListParts(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginListXmlCPr.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginListXmlCPr.h index e8642dd15f..05a1ccf57f 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginListXmlCPr.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginListXmlCPr.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginListXmlCPr) public: BeginListXmlCPr(); - virtual ~BeginListXmlCPr(); + ~BeginListXmlCPr(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginMG.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginMG.h index 5e3d689766..bc60718c56 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginMG.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginMG.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginMG) public: BeginMG(); - virtual ~BeginMG(); + ~BeginMG(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginMGMaps.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginMGMaps.h index 6a5a40db48..5ae189903a 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginMGMaps.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginMGMaps.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginMGMaps) public: BeginMGMaps(); - virtual ~BeginMGMaps(); + ~BeginMGMaps(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginMGs.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginMGs.h index 230092323d..ac9ec3f860 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginMGs.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginMGs.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginMGs) public: BeginMGs(); - virtual ~BeginMGs(); + ~BeginMGs(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginMRUColors.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginMRUColors.h index a86c3e7327..4ebec8d59b 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginMRUColors.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginMRUColors.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginMRUColors) public: BeginMRUColors(); - virtual ~BeginMRUColors(); + ~BeginMRUColors(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginMap.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginMap.h index eea125c4e8..786226291c 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginMap.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginMap.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginMap) public: BeginMap(); - virtual ~BeginMap(); + ~BeginMap(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginMergeCells.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginMergeCells.h index 1a8d34be45..a6befe7a05 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginMergeCells.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginMergeCells.h @@ -46,7 +46,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginMergeCells) public: BeginMergeCells(); - virtual ~BeginMergeCells(); + ~BeginMergeCells(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginOleObjects.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginOleObjects.h index cdd3a43ab6..8a266b287d 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginOleObjects.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginOleObjects.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginOleObjects) public: BeginOleObjects(); - virtual ~BeginOleObjects(); + ~BeginOleObjects(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginOledbPr15.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginOledbPr15.h index 6bf21846ba..f0f537d591 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginOledbPr15.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginOledbPr15.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginOledbPr15) public: BeginOledbPr15(); - virtual ~BeginOledbPr15(); + ~BeginOledbPr15(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCD14.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCD14.h index 7fe8328a5d..3a94aa08c5 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCD14.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCD14.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginPCD14) public: BeginPCD14(); - virtual ~BeginPCD14(); + ~BeginPCD14(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDCalcItem.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDCalcItem.h index a0b7e588c3..0704403da3 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDCalcItem.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDCalcItem.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginPCDCalcItem) public: BeginPCDCalcItem(); - virtual ~BeginPCDCalcItem(); + ~BeginPCDCalcItem(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDCalcItems.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDCalcItems.h index 2c0a03ff37..6204954158 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDCalcItems.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDCalcItems.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginPCDCalcItems) public: BeginPCDCalcItems(); - virtual ~BeginPCDCalcItems(); + ~BeginPCDCalcItems(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDCalcMem.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDCalcMem.h index 8fce434dce..1feb11ed33 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDCalcMem.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDCalcMem.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginPCDCalcMem) public: BeginPCDCalcMem(); - virtual ~BeginPCDCalcMem(); + ~BeginPCDCalcMem(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDCalcMem14.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDCalcMem14.h index 45a2b6869c..bf7a6e56ae 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDCalcMem14.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDCalcMem14.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginPCDCalcMem14) public: BeginPCDCalcMem14(); - virtual ~BeginPCDCalcMem14(); + ~BeginPCDCalcMem14(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDCalcMemExt.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDCalcMemExt.h index b7b5c6b8ba..3f794abb2f 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDCalcMemExt.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDCalcMemExt.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginPCDCalcMemExt) public: BeginPCDCalcMemExt(); - virtual ~BeginPCDCalcMemExt(); + ~BeginPCDCalcMemExt(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDCalcMems.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDCalcMems.h index 5079620929..54180d7a24 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDCalcMems.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDCalcMems.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginPCDCalcMems) public: BeginPCDCalcMems(); - virtual ~BeginPCDCalcMems(); + ~BeginPCDCalcMems(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDCalcMemsExt.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDCalcMemsExt.h index 2bb312a99f..2a40804576 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDCalcMemsExt.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDCalcMemsExt.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginPCDCalcMemsExt) public: BeginPCDCalcMemsExt(); - virtual ~BeginPCDCalcMemsExt(); + ~BeginPCDCalcMemsExt(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDFAtbl.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDFAtbl.h index 50cb5456f2..de4fef2506 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDFAtbl.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDFAtbl.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginPCDFAtbl) public: BeginPCDFAtbl(); - virtual ~BeginPCDFAtbl(); + ~BeginPCDFAtbl(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDFGDiscrete.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDFGDiscrete.h index 15242baa46..40e70a5173 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDFGDiscrete.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDFGDiscrete.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginPCDFGDiscrete) public: BeginPCDFGDiscrete(); - virtual ~BeginPCDFGDiscrete(); + ~BeginPCDFGDiscrete(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDFGItems.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDFGItems.h index 7ba0051ad0..d2d963eeee 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDFGItems.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDFGItems.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginPCDFGItems) public: BeginPCDFGItems(); - virtual ~BeginPCDFGItems(); + ~BeginPCDFGItems(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDFGRange.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDFGRange.h index ff4ea77b8c..656cc0a701 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDFGRange.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDFGRange.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginPCDFGRange) public: BeginPCDFGRange(); - virtual ~BeginPCDFGRange(); + ~BeginPCDFGRange(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDFGroup.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDFGroup.h index d298335af8..d42dd09a46 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDFGroup.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDFGroup.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginPCDFGroup) public: BeginPCDFGroup(); - virtual ~BeginPCDFGroup(); + ~BeginPCDFGroup(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDField.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDField.h index 18d05beb64..07ba187ee3 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDField.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDField.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginPCDField) public: BeginPCDField(); - virtual ~BeginPCDField(); + ~BeginPCDField(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDFields.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDFields.h index d68df0bd4f..cd9cf4c56a 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDFields.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDFields.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginPCDFields) public: BeginPCDFields(); - virtual ~BeginPCDFields(); + ~BeginPCDFields(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDHFieldsUsage.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDHFieldsUsage.h index 976cbe17f7..0494a78dee 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDHFieldsUsage.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDHFieldsUsage.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginPCDHFieldsUsage) public: BeginPCDHFieldsUsage(); - virtual ~BeginPCDHFieldsUsage(); + ~BeginPCDHFieldsUsage(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDHGLGMember.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDHGLGMember.h index 32a1fe8912..ef697fec8b 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDHGLGMember.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDHGLGMember.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginPCDHGLGMember) public: BeginPCDHGLGMember(); - virtual ~BeginPCDHGLGMember(); + ~BeginPCDHGLGMember(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDHGLGMembers.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDHGLGMembers.h index ca1185ef7d..8955a800ec 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDHGLGMembers.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDHGLGMembers.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginPCDHGLGMembers) public: BeginPCDHGLGMembers(); - virtual ~BeginPCDHGLGMembers(); + ~BeginPCDHGLGMembers(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDHGLGroup.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDHGLGroup.h index fa8ac95061..f111226ddc 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDHGLGroup.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDHGLGroup.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginPCDHGLGroup) public: BeginPCDHGLGroup(); - virtual ~BeginPCDHGLGroup(); + ~BeginPCDHGLGroup(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDHGLGroups.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDHGLGroups.h index 675dc14a0f..733c11e01d 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDHGLGroups.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDHGLGroups.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginPCDHGLGroups) public: BeginPCDHGLGroups(); - virtual ~BeginPCDHGLGroups(); + ~BeginPCDHGLGroups(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDHGLevel.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDHGLevel.h index 4f206cdbf7..e17f679f2f 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDHGLevel.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDHGLevel.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginPCDHGLevel) public: BeginPCDHGLevel(); - virtual ~BeginPCDHGLevel(); + ~BeginPCDHGLevel(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDHGLevels.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDHGLevels.h index 92ee9e8581..30e644751e 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDHGLevels.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDHGLevels.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginPCDHGLevels) public: BeginPCDHGLevels(); - virtual ~BeginPCDHGLevels(); + ~BeginPCDHGLevels(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDHierarchies.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDHierarchies.h index 9ae1032e71..fa8c255b75 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDHierarchies.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDHierarchies.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginPCDHierarchies) public: BeginPCDHierarchies(); - virtual ~BeginPCDHierarchies(); + ~BeginPCDHierarchies(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDHierarchy.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDHierarchy.h index 1bb73f71ca..8d430c5759 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDHierarchy.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDHierarchy.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginPCDHierarchy) public: BeginPCDHierarchy(); - virtual ~BeginPCDHierarchy(); + ~BeginPCDHierarchy(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDIRun.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDIRun.h index ae8330ca3a..43912625f2 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDIRun.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDIRun.h @@ -46,7 +46,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginPCDIRun) public: BeginPCDIRun(); - virtual ~BeginPCDIRun(); + ~BeginPCDIRun(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDKPI.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDKPI.h index ee74045d63..5ad0c09822 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDKPI.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDKPI.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginPCDKPI) public: BeginPCDKPI(); - virtual ~BeginPCDKPI(); + ~BeginPCDKPI(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDKPIs.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDKPIs.h index aa5620da75..111a608433 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDKPIs.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDKPIs.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginPCDKPIs) public: BeginPCDKPIs(); - virtual ~BeginPCDKPIs(); + ~BeginPCDKPIs(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDSCPItem.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDSCPItem.h index ddc7f26c9c..298d93361a 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDSCPItem.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDSCPItem.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginPCDSCPItem) public: BeginPCDSCPItem(); - virtual ~BeginPCDSCPItem(); + ~BeginPCDSCPItem(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDSCPage.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDSCPage.h index 8a0a3a28fd..74d67cc55b 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDSCPage.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDSCPage.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginPCDSCPage) public: BeginPCDSCPage(); - virtual ~BeginPCDSCPage(); + ~BeginPCDSCPage(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDSCPages.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDSCPages.h index 0e39fecfba..c00c218c7b 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDSCPages.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDSCPages.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginPCDSCPages) public: BeginPCDSCPages(); - virtual ~BeginPCDSCPages(); + ~BeginPCDSCPages(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDSCSet.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDSCSet.h index 41ff496b5a..ed76d37bf0 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDSCSet.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDSCSet.h @@ -46,7 +46,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginPCDSCSet) public: BeginPCDSCSet(); - virtual ~BeginPCDSCSet(); + ~BeginPCDSCSet(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDSCSets.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDSCSets.h index b1cc70eb7d..22f09f9f12 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDSCSets.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDSCSets.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginPCDSCSets) public: BeginPCDSCSets(); - virtual ~BeginPCDSCSets(); + ~BeginPCDSCSets(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDSConsol.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDSConsol.h index 09e96fb225..51e7815d1c 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDSConsol.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDSConsol.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginPCDSConsol) public: BeginPCDSConsol(); - virtual ~BeginPCDSConsol(); + ~BeginPCDSConsol(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDSDTCEMember.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDSDTCEMember.h index 00b1340354..72dba92192 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDSDTCEMember.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDSDTCEMember.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginPCDSDTCEMember) public: BeginPCDSDTCEMember(); - virtual ~BeginPCDSDTCEMember(); + ~BeginPCDSDTCEMember(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDSDTCEMembers.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDSDTCEMembers.h index 995b4613a5..a290a525c1 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDSDTCEMembers.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDSDTCEMembers.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginPCDSDTCEMembers) public: BeginPCDSDTCEMembers(); - virtual ~BeginPCDSDTCEMembers(); + ~BeginPCDSDTCEMembers(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDSDTCEMembersSortBy.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDSDTCEMembersSortBy.h index f1d6303630..ee2aaa59c1 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDSDTCEMembersSortBy.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDSDTCEMembersSortBy.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginPCDSDTCEMembersSortBy) public: BeginPCDSDTCEMembersSortBy(); - virtual ~BeginPCDSDTCEMembersSortBy(); + ~BeginPCDSDTCEMembersSortBy(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDSDTCEntries.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDSDTCEntries.h index 5d6268cccd..d44ee69cb0 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDSDTCEntries.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDSDTCEntries.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginPCDSDTCEntries) public: BeginPCDSDTCEntries(); - virtual ~BeginPCDSDTCEntries(); + ~BeginPCDSDTCEntries(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDSDTCQueries.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDSDTCQueries.h index 10d1ed3ae1..01b3a7d2a4 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDSDTCQueries.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDSDTCQueries.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginPCDSDTCQueries) public: BeginPCDSDTCQueries(); - virtual ~BeginPCDSDTCQueries(); + ~BeginPCDSDTCQueries(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDSDTCQuery.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDSDTCQuery.h index 61fb9d737a..5ab5846b70 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDSDTCQuery.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDSDTCQuery.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginPCDSDTCQuery) public: BeginPCDSDTCQuery(); - virtual ~BeginPCDSDTCQuery(); + ~BeginPCDSDTCQuery(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDSDTCSet.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDSDTCSet.h index e65ed6c6e4..49959a9917 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDSDTCSet.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDSDTCSet.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginPCDSDTCSet) public: BeginPCDSDTCSet(); - virtual ~BeginPCDSDTCSet(); + ~BeginPCDSDTCSet(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDSDTCSets.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDSDTCSets.h index 1d1bf2af4c..abe2ba4427 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDSDTCSets.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDSDTCSets.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginPCDSDTCSets) public: BeginPCDSDTCSets(); - virtual ~BeginPCDSDTCSets(); + ~BeginPCDSDTCSets(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDSDTupleCache.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDSDTupleCache.h index 4f5653bdd2..5186f7b07e 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDSDTupleCache.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDSDTupleCache.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginPCDSDTupleCache) public: BeginPCDSDTupleCache(); - virtual ~BeginPCDSDTupleCache(); + ~BeginPCDSDTupleCache(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDSFCIEntries.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDSFCIEntries.h index ae79644da1..fa13b7ad03 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDSFCIEntries.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDSFCIEntries.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginPCDSFCIEntries) public: BeginPCDSFCIEntries(); - virtual ~BeginPCDSFCIEntries(); + ~BeginPCDSFCIEntries(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDSRange.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDSRange.h index 9e7c0d6421..fdd1fd2521 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDSRange.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDSRange.h @@ -46,7 +46,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginPCDSRange) public: BeginPCDSRange(); - virtual ~BeginPCDSRange(); + ~BeginPCDSRange(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDSource.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDSource.h index dc1ffe146f..2ab6f757d2 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDSource.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPCDSource.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginPCDSource) public: BeginPCDSource(); - virtual ~BeginPCDSource(); + ~BeginPCDSource(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPNPair.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPNPair.h index eba0bfc8a1..6ef0356a9b 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPNPair.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPNPair.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginPNPair) public: BeginPNPair(); - virtual ~BeginPNPair(); + ~BeginPNPair(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPNPairs.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPNPairs.h index 2b9471ee3c..e2136a93a7 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPNPairs.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPNPairs.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginPNPairs) public: BeginPNPairs(); - virtual ~BeginPNPairs(); + ~BeginPNPairs(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPName.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPName.h index d2f58dda20..ec64cd8e65 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPName.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPName.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginPName) public: BeginPName(); - virtual ~BeginPName(); + ~BeginPName(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPNames.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPNames.h index f6321630cf..2a8cce7566 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPNames.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPNames.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginPNames) public: BeginPNames(); - virtual ~BeginPNames(); + ~BeginPNames(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPRFItem.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPRFItem.h index 84ad09dc3b..7d1ab906f9 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPRFItem.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPRFItem.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginPRFItem) public: BeginPRFItem(); - virtual ~BeginPRFItem(); + ~BeginPRFItem(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPRFItem14.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPRFItem14.h index 5bea193781..b4a3564e31 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPRFItem14.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPRFItem14.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginPRFItem14) public: BeginPRFItem14(); - virtual ~BeginPRFItem14(); + ~BeginPRFItem14(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPRFilter.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPRFilter.h index 40588337c3..a5318e7396 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPRFilter.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPRFilter.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginPRFilter) public: BeginPRFilter(); - virtual ~BeginPRFilter(); + ~BeginPRFilter(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPRFilter14.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPRFilter14.h index 674d751c84..b6d5a7ef7c 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPRFilter14.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPRFilter14.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginPRFilter14) public: BeginPRFilter14(); - virtual ~BeginPRFilter14(); + ~BeginPRFilter14(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPRFilters.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPRFilters.h index ffd6a568fb..1741c5f1d8 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPRFilters.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPRFilters.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginPRFilters) public: BeginPRFilters(); - virtual ~BeginPRFilters(); + ~BeginPRFilters(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPRFilters14.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPRFilters14.h index 373c2ad266..91dcecf8eb 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPRFilters14.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPRFilters14.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginPRFilters14) public: BeginPRFilters14(); - virtual ~BeginPRFilters14(); + ~BeginPRFilters14(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPRule.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPRule.h index 72af0d051f..9bcac1d7dd 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPRule.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPRule.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginPRule) public: BeginPRule(); - virtual ~BeginPRule(); + ~BeginPRule(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPRule14.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPRule14.h index 9398e88fc0..5df939bc5e 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPRule14.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPRule14.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginPRule14) public: BeginPRule14(); - virtual ~BeginPRule14(); + ~BeginPRule14(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPivotCacheDef.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPivotCacheDef.h index 0186931283..ceb96d6889 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPivotCacheDef.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPivotCacheDef.h @@ -46,7 +46,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginPivotCacheDef) public: BeginPivotCacheDef(); - virtual ~BeginPivotCacheDef(); + ~BeginPivotCacheDef(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPivotCacheID.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPivotCacheID.h index ac00089c43..6f1d83dcfe 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPivotCacheID.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPivotCacheID.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginPivotCacheID) public: BeginPivotCacheID(); - virtual ~BeginPivotCacheID(); + ~BeginPivotCacheID(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPivotCacheIDs.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPivotCacheIDs.h index 8da9f8d519..059974c082 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPivotCacheIDs.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPivotCacheIDs.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginPivotCacheIDs) public: BeginPivotCacheIDs(); - virtual ~BeginPivotCacheIDs(); + ~BeginPivotCacheIDs(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPivotCacheRecords.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPivotCacheRecords.h index c13a407bf2..28e5cd63f1 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPivotCacheRecords.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPivotCacheRecords.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginPivotCacheRecords) public: BeginPivotCacheRecords(); - virtual ~BeginPivotCacheRecords(); + ~BeginPivotCacheRecords(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPivotTableUISettings.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPivotTableUISettings.h index 8bb242375a..d30dc1151f 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPivotTableUISettings.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginPivotTableUISettings.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginPivotTableUISettings) public: BeginPivotTableUISettings(); - virtual ~BeginPivotTableUISettings(); + ~BeginPivotTableUISettings(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginQSIFs.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginQSIFs.h index db310f8a01..0ef330a3e7 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginQSIFs.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginQSIFs.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginQSIFs) public: BeginQSIFs(); - virtual ~BeginQSIFs(); + ~BeginQSIFs(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginRichFilterColumn.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginRichFilterColumn.h index 028e5e70c7..11df75c9da 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginRichFilterColumn.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginRichFilterColumn.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginRichFilterColumn) public: BeginRichFilterColumn(); - virtual ~BeginRichFilterColumn(); + ~BeginRichFilterColumn(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginRichFilters.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginRichFilters.h index a95e15a52d..8c321e257b 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginRichFilters.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginRichFilters.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginRichFilters) public: BeginRichFilters(); - virtual ~BeginRichFilters(); + ~BeginRichFilters(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginRichSortCondition.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginRichSortCondition.h index 5b0aefccdd..f61d8240f9 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginRichSortCondition.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginRichSortCondition.h @@ -46,7 +46,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginRichSortCondition) public: BeginRichSortCondition(); - virtual ~BeginRichSortCondition(); + ~BeginRichSortCondition(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginRwBrk.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginRwBrk.h index 9663a61ad1..ee24dd1e04 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginRwBrk.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginRwBrk.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginRwBrk) public: BeginRwBrk(); - virtual ~BeginRwBrk(); + ~BeginRwBrk(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXChange.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXChange.h index 9d12f0ba18..a91947e5d0 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXChange.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXChange.h @@ -47,7 +47,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginSXChange) public: BeginSXChange(); - virtual ~BeginSXChange(); + ~BeginSXChange(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXChanges.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXChanges.h index 4330e85366..a9bc5aa382 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXChanges.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXChanges.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginSXChanges) public: BeginSXChanges(); - virtual ~BeginSXChanges(); + ~BeginSXChanges(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXCondFmt.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXCondFmt.h index f45afb8bfa..22fa39f747 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXCondFmt.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXCondFmt.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginSXCondFmt) public: BeginSXCondFmt(); - virtual ~BeginSXCondFmt(); + ~BeginSXCondFmt(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXCondFmt14.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXCondFmt14.h index 253a7cdb46..ddb9696a03 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXCondFmt14.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXCondFmt14.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginSXCondFmt14) public: BeginSXCondFmt14(); - virtual ~BeginSXCondFmt14(); + ~BeginSXCondFmt14(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXCondFmts.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXCondFmts.h index 277187724e..44d8a0762e 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXCondFmts.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXCondFmts.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginSXCondFmts) public: BeginSXCondFmts(); - virtual ~BeginSXCondFmts(); + ~BeginSXCondFmts(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXCondFmts14.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXCondFmts14.h index f574cb097d..01350afb2e 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXCondFmts14.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXCondFmts14.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginSXCondFmts14) public: BeginSXCondFmts14(); - virtual ~BeginSXCondFmts14(); + ~BeginSXCondFmts14(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXCrtFormat.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXCrtFormat.h index e0c56d6261..264b775d90 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXCrtFormat.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXCrtFormat.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginSXCrtFormat) public: BeginSXCrtFormat(); - virtual ~BeginSXCrtFormat(); + ~BeginSXCrtFormat(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXCrtFormats.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXCrtFormats.h index 341be531ba..95159f5fb6 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXCrtFormats.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXCrtFormats.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginSXCrtFormats) public: BeginSXCrtFormats(); - virtual ~BeginSXCrtFormats(); + ~BeginSXCrtFormats(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXDI.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXDI.h index 7c2aabac21..7c878c1886 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXDI.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXDI.h @@ -47,7 +47,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginSXDI) public: BeginSXDI(); - virtual ~BeginSXDI(); + ~BeginSXDI(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXDIs.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXDIs.h index 66f3a65284..245385353f 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXDIs.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXDIs.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginSXDIs) public: BeginSXDIs(); - virtual ~BeginSXDIs(); + ~BeginSXDIs(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXEdit.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXEdit.h index 9591eb3b18..870d0b8c59 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXEdit.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXEdit.h @@ -48,7 +48,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginSXEdit) public: BeginSXEdit(); - virtual ~BeginSXEdit(); + ~BeginSXEdit(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXEdits.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXEdits.h index 31e67770b3..b157fa78cb 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXEdits.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXEdits.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginSXEdits) public: BeginSXEdits(); - virtual ~BeginSXEdits(); + ~BeginSXEdits(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXFilter.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXFilter.h index e886cfe5e8..326377f7c8 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXFilter.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXFilter.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginSXFilter) public: BeginSXFilter(); - virtual ~BeginSXFilter(); + ~BeginSXFilter(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXFilters.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXFilters.h index b0e8d04747..210d0d1751 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXFilters.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXFilters.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginSXFilters) public: BeginSXFilters(); - virtual ~BeginSXFilters(); + ~BeginSXFilters(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXFormat.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXFormat.h index 324353443e..30ade215d2 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXFormat.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXFormat.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginSXFormat) public: BeginSXFormat(); - virtual ~BeginSXFormat(); + ~BeginSXFormat(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXFormats.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXFormats.h index bcdc1f9ac3..ee7ad86f74 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXFormats.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXFormats.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginSXFormats) public: BeginSXFormats(); - virtual ~BeginSXFormats(); + ~BeginSXFormats(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXLI.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXLI.h index d10bd6dce2..04f2c33a40 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXLI.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXLI.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginSXLI) public: BeginSXLI(); - virtual ~BeginSXLI(); + ~BeginSXLI(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXLICols.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXLICols.h index 1602ec4c5b..b8245f0cd0 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXLICols.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXLICols.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginSXLICols) public: BeginSXLICols(); - virtual ~BeginSXLICols(); + ~BeginSXLICols(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXLIRws.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXLIRws.h index dbfe8fce71..85315b364b 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXLIRws.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXLIRws.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginSXLIRws) public: BeginSXLIRws(); - virtual ~BeginSXLIRws(); + ~BeginSXLIRws(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXLocation.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXLocation.h index c01069bed7..859b82a8f1 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXLocation.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXLocation.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginSXLocation) public: BeginSXLocation(); - virtual ~BeginSXLocation(); + ~BeginSXLocation(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXPI.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXPI.h index ff87d6dfc9..b9d8cd3294 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXPI.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXPI.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginSXPI) public: BeginSXPI(); - virtual ~BeginSXPI(); + ~BeginSXPI(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXPIs.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXPIs.h index e71dd3661d..5bb949d032 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXPIs.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXPIs.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginSXPIs) public: BeginSXPIs(); - virtual ~BeginSXPIs(); + ~BeginSXPIs(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXRules.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXRules.h index 54f2eccd9a..16cb558a7e 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXRules.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXRules.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginSXRules) public: BeginSXRules(); - virtual ~BeginSXRules(); + ~BeginSXRules(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXRules14.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXRules14.h index da1aec8d91..8fc1404bb2 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXRules14.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXRules14.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginSXRules14) public: BeginSXRules14(); - virtual ~BeginSXRules14(); + ~BeginSXRules14(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXTDMP.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXTDMP.h index 2f6b78103c..5437e6ebdc 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXTDMP.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXTDMP.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginSXTDMP) public: BeginSXTDMP(); - virtual ~BeginSXTDMP(); + ~BeginSXTDMP(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXTDMPs.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXTDMPs.h index a0eaeeadf4..0510b344a5 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXTDMPs.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXTDMPs.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginSXTDMPs) public: BeginSXTDMPs(); - virtual ~BeginSXTDMPs(); + ~BeginSXTDMPs(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXTH.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXTH.h index b7636dc1bd..4621ffe574 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXTH.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXTH.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginSXTH) public: BeginSXTH(); - virtual ~BeginSXTH(); + ~BeginSXTH(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXTHItem.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXTHItem.h index cc6f48d7b8..667492e53d 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXTHItem.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXTHItem.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginSXTHItem) public: BeginSXTHItem(); - virtual ~BeginSXTHItem(); + ~BeginSXTHItem(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXTHItems.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXTHItems.h index 185f5d690c..2dfa14c1ea 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXTHItems.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXTHItems.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginSXTHItems) public: BeginSXTHItems(); - virtual ~BeginSXTHItems(); + ~BeginSXTHItems(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXTHs.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXTHs.h index 3544b62e64..dcad39a3a3 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXTHs.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXTHs.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginSXTHs) public: BeginSXTHs(); - virtual ~BeginSXTHs(); + ~BeginSXTHs(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXTupleSet.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXTupleSet.h index 57acb26b13..6590663cce 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXTupleSet.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXTupleSet.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginSXTupleSet) public: BeginSXTupleSet(); - virtual ~BeginSXTupleSet(); + ~BeginSXTupleSet(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXTupleSetData.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXTupleSetData.h index 9cc22dfb61..3ad5e7e8f6 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXTupleSetData.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXTupleSetData.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginSXTupleSetData) public: BeginSXTupleSetData(); - virtual ~BeginSXTupleSetData(); + ~BeginSXTupleSetData(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXTupleSetHeader.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXTupleSetHeader.h index bcbf18151a..e7d7308eb3 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXTupleSetHeader.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXTupleSetHeader.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginSXTupleSetHeader) public: BeginSXTupleSetHeader(); - virtual ~BeginSXTupleSetHeader(); + ~BeginSXTupleSetHeader(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXTupleSetRow.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXTupleSetRow.h index fa9e2db68f..5eb0f89a25 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXTupleSetRow.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXTupleSetRow.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginSXTupleSetRow) public: BeginSXTupleSetRow(); - virtual ~BeginSXTupleSetRow(); + ~BeginSXTupleSetRow(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXVD.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXVD.h index c723e65d68..628c5659af 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXVD.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXVD.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginSXVD) public: BeginSXVD(); - virtual ~BeginSXVD(); + ~BeginSXVD(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXVDs.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXVDs.h index 136c3b8eef..51c0d85582 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXVDs.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXVDs.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginSXVDs) public: BeginSXVDs(); - virtual ~BeginSXVDs(); + ~BeginSXVDs(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXVI.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXVI.h index 083f9f6f27..2a04961ecc 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXVI.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXVI.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginSXVI) public: BeginSXVI(); - virtual ~BeginSXVI(); + ~BeginSXVI(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXVIs.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXVIs.h index 8392f8dbb5..597b43f385 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXVIs.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXVIs.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginSXVIs) public: BeginSXVIs(); - virtual ~BeginSXVIs(); + ~BeginSXVIs(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXView.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXView.h index e42530efed..8d909e5ff1 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXView.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXView.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginSXView) public: BeginSXView(); - virtual ~BeginSXView(); + ~BeginSXView(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXView14.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXView14.h index eb2721d9d4..2f0b05d66c 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXView14.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXView14.h @@ -46,7 +46,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginSXView14) public: BeginSXView14(); - virtual ~BeginSXView14(); + ~BeginSXView14(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXView16.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXView16.h index 104da90b33..dbac240f65 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXView16.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSXView16.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginSXView16) public: BeginSXView16(); - virtual ~BeginSXView16(); + ~BeginSXView16(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSheet.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSheet.h index 905c29c411..0f561bc85a 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSheet.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSheet.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginSheet) public: BeginSheet(); - virtual ~BeginSheet(); + ~BeginSheet(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSheetData.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSheetData.h index fe927915c0..32de0d2621 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSheetData.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSheetData.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginSheetData) public: BeginSheetData(); - virtual ~BeginSheetData(); + ~BeginSheetData(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSlicer.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSlicer.h index bb699bb139..0d3ff389a3 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSlicer.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSlicer.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginSlicer) public: BeginSlicer(); - virtual ~BeginSlicer(); + ~BeginSlicer(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSlicerCache.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSlicerCache.h index 9bdc0338e5..e647331e05 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSlicerCache.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSlicerCache.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginSlicerCache) public: BeginSlicerCache(); - virtual ~BeginSlicerCache(); + ~BeginSlicerCache(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSlicerCacheDef.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSlicerCacheDef.h index 370c144912..6806d77e4b 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSlicerCacheDef.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSlicerCacheDef.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginSlicerCacheDef) public: BeginSlicerCacheDef(); - virtual ~BeginSlicerCacheDef(); + ~BeginSlicerCacheDef(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSlicerCacheID.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSlicerCacheID.h index 0c37e881da..210dd6aff6 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSlicerCacheID.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSlicerCacheID.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginSlicerCacheID) public: BeginSlicerCacheID(); - virtual ~BeginSlicerCacheID(); + ~BeginSlicerCacheID(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSlicerCacheIDs.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSlicerCacheIDs.h index c7f313f8ec..6592c14ba8 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSlicerCacheIDs.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSlicerCacheIDs.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginSlicerCacheIDs) public: BeginSlicerCacheIDs(); - virtual ~BeginSlicerCacheIDs(); + ~BeginSlicerCacheIDs(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSlicerCacheLevelData.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSlicerCacheLevelData.h index 1a59ee32c0..3ff7a24830 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSlicerCacheLevelData.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSlicerCacheLevelData.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginSlicerCacheLevelData) public: BeginSlicerCacheLevelData(); - virtual ~BeginSlicerCacheLevelData(); + ~BeginSlicerCacheLevelData(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSlicerCacheLevelsData.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSlicerCacheLevelsData.h index 83faf0ec2d..cdce675731 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSlicerCacheLevelsData.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSlicerCacheLevelsData.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginSlicerCacheLevelsData) public: BeginSlicerCacheLevelsData(); - virtual ~BeginSlicerCacheLevelsData(); + ~BeginSlicerCacheLevelsData(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSlicerCacheNative.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSlicerCacheNative.h index fc8fdb20ab..4f53615edd 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSlicerCacheNative.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSlicerCacheNative.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginSlicerCacheNative) public: BeginSlicerCacheNative(); - virtual ~BeginSlicerCacheNative(); + ~BeginSlicerCacheNative(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSlicerCacheOlapImpl.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSlicerCacheOlapImpl.h index 6260e5ea59..2768ed38b9 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSlicerCacheOlapImpl.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSlicerCacheOlapImpl.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginSlicerCacheOlapImpl) public: BeginSlicerCacheOlapImpl(); - virtual ~BeginSlicerCacheOlapImpl(); + ~BeginSlicerCacheOlapImpl(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSlicerCacheSelections.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSlicerCacheSelections.h index 00787fc7bf..5f1dbfa24c 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSlicerCacheSelections.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSlicerCacheSelections.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginSlicerCacheSelections) public: BeginSlicerCacheSelections(); - virtual ~BeginSlicerCacheSelections(); + ~BeginSlicerCacheSelections(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSlicerCacheSiRange.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSlicerCacheSiRange.h index 992aec6897..5d94f9c68a 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSlicerCacheSiRange.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSlicerCacheSiRange.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginSlicerCacheSiRange) public: BeginSlicerCacheSiRange(); - virtual ~BeginSlicerCacheSiRange(); + ~BeginSlicerCacheSiRange(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSlicerCacheSiRanges.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSlicerCacheSiRanges.h index 82c0334ece..b5547a902d 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSlicerCacheSiRanges.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSlicerCacheSiRanges.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginSlicerCacheSiRanges) public: BeginSlicerCacheSiRanges(); - virtual ~BeginSlicerCacheSiRanges(); + ~BeginSlicerCacheSiRanges(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSlicerCachesPivotCacheID.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSlicerCachesPivotCacheID.h index eddcc90c1f..b7bd9c54ae 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSlicerCachesPivotCacheID.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSlicerCachesPivotCacheID.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginSlicerCachesPivotCacheID) public: BeginSlicerCachesPivotCacheID(); - virtual ~BeginSlicerCachesPivotCacheID(); + ~BeginSlicerCachesPivotCacheID(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSlicerCachesPivotCacheIDs.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSlicerCachesPivotCacheIDs.h index 99b9d76754..a989973270 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSlicerCachesPivotCacheIDs.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSlicerCachesPivotCacheIDs.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginSlicerCachesPivotCacheIDs) public: BeginSlicerCachesPivotCacheIDs(); - virtual ~BeginSlicerCachesPivotCacheIDs(); + ~BeginSlicerCachesPivotCacheIDs(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSlicerEx.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSlicerEx.h index 90e6d333df..979e29d8bb 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSlicerEx.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSlicerEx.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginSlicerEx) public: BeginSlicerEx(); - virtual ~BeginSlicerEx(); + ~BeginSlicerEx(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSlicerStyle.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSlicerStyle.h index 6b901c3d5c..f5bacc1927 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSlicerStyle.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSlicerStyle.h @@ -47,7 +47,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginSlicerStyle) public: BeginSlicerStyle(); - virtual ~BeginSlicerStyle(); + ~BeginSlicerStyle(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSlicerStyleElements.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSlicerStyleElements.h index 8b7d430482..621fc49075 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSlicerStyleElements.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSlicerStyleElements.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginSlicerStyleElements) public: BeginSlicerStyleElements(); - virtual ~BeginSlicerStyleElements(); + ~BeginSlicerStyleElements(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSlicerStyles.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSlicerStyles.h index 5dcacf34ba..fecd5ef9f7 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSlicerStyles.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSlicerStyles.h @@ -47,7 +47,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginSlicerStyles) public: BeginSlicerStyles(); - virtual ~BeginSlicerStyles(); + ~BeginSlicerStyles(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSlicers.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSlicers.h index f3212940d0..5a8624122e 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSlicers.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSlicers.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginSlicers) public: BeginSlicers(); - virtual ~BeginSlicers(); + ~BeginSlicers(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSlicersEx.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSlicersEx.h index 65666a9ba1..52587b7be0 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSlicersEx.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSlicersEx.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginSlicersEx) public: BeginSlicersEx(); - virtual ~BeginSlicersEx(); + ~BeginSlicersEx(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSortCond.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSortCond.h index ec37e3eb97..10b8f11f7d 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSortCond.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSortCond.h @@ -47,7 +47,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginSortCond) public: BeginSortCond(); - virtual ~BeginSortCond(); + ~BeginSortCond(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSortCond14.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSortCond14.h index 8326b226ad..8c6dc32fdb 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSortCond14.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSortCond14.h @@ -47,7 +47,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginSortCond14) public: BeginSortCond14(); - virtual ~BeginSortCond14(); + ~BeginSortCond14(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSparklineGroup.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSparklineGroup.h index 5ac8f9d121..59aae465d2 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSparklineGroup.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSparklineGroup.h @@ -46,7 +46,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginSparklineGroup) public: BeginSparklineGroup(); - virtual ~BeginSparklineGroup(); + ~BeginSparklineGroup(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSparklineGroups.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSparklineGroups.h index 5b23d0f84e..8075026e5b 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSparklineGroups.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSparklineGroups.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginSparklineGroups) public: BeginSparklineGroups(); - virtual ~BeginSparklineGroups(); + ~BeginSparklineGroups(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSparklines.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSparklines.h index cf5f137600..0d24e50729 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSparklines.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSparklines.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginSparklines) public: BeginSparklines(); - virtual ~BeginSparklines(); + ~BeginSparklines(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSst.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSst.h index cd292b3b62..51f27a55b8 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSst.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSst.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginSst) public: BeginSst(); - virtual ~BeginSst(); + ~BeginSst(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginStyleSheet.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginStyleSheet.h index 8f66dd522c..20f9fbd95a 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginStyleSheet.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginStyleSheet.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginStyleSheet) public: BeginStyleSheet(); - virtual ~BeginStyleSheet(); + ~BeginStyleSheet(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginStyleSheetExt14.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginStyleSheetExt14.h index 2ffbf9d464..f237b42cfe 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginStyleSheetExt14.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginStyleSheetExt14.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginStyleSheetExt14) public: BeginStyleSheetExt14(); - virtual ~BeginStyleSheetExt14(); + ~BeginStyleSheetExt14(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginStyles.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginStyles.h index 7b05f36918..eba4e05361 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginStyles.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginStyles.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginStyles) public: BeginStyles(); - virtual ~BeginStyles(); + ~BeginStyles(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSupBook.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSupBook.h index 501e6b4850..eacb113b7f 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSupBook.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSupBook.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginSupBook) public: BeginSupBook(); - virtual ~BeginSupBook(); + ~BeginSupBook(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSxRow.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSxRow.h index 201dc3d55f..b1dce7bb4e 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSxRow.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSxRow.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginSxRow) public: BeginSxRow(); - virtual ~BeginSxRow(); + ~BeginSxRow(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSxvcells.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSxvcells.h index b4f443ba48..773e261811 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSxvcells.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginSxvcells.h @@ -46,7 +46,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginSxvcells) public: BeginSxvcells(); - virtual ~BeginSxvcells(); + ~BeginSxvcells(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginTableSlicerCache.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginTableSlicerCache.h index 8bee12e03b..85f189b44a 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginTableSlicerCache.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginTableSlicerCache.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginTableSlicerCache) public: BeginTableSlicerCache(); - virtual ~BeginTableSlicerCache(); + ~BeginTableSlicerCache(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginTimelineStyle.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginTimelineStyle.h index de5e167652..dde4cfdfbc 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginTimelineStyle.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginTimelineStyle.h @@ -47,7 +47,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginTimelineStyle) public: BeginTimelineStyle(); - virtual ~BeginTimelineStyle(); + ~BeginTimelineStyle(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginTimelineStyleElements.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginTimelineStyleElements.h index c11471f5dc..90c954564e 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginTimelineStyleElements.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginTimelineStyleElements.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginTimelineStyleElements) public: BeginTimelineStyleElements(); - virtual ~BeginTimelineStyleElements(); + ~BeginTimelineStyleElements(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginTimelineStyleSheetExt15.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginTimelineStyleSheetExt15.h index 16eb2e2413..c0cdfd2779 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginTimelineStyleSheetExt15.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginTimelineStyleSheetExt15.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginTimelineStyleSheetExt15) public: BeginTimelineStyleSheetExt15(); - virtual ~BeginTimelineStyleSheetExt15(); + ~BeginTimelineStyleSheetExt15(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginTimelineStyles.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginTimelineStyles.h index e4c601937c..611c2dd2b8 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginTimelineStyles.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginTimelineStyles.h @@ -47,7 +47,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginTimelineStyles) public: BeginTimelineStyles(); - virtual ~BeginTimelineStyles(); + ~BeginTimelineStyles(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginUserCsView.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginUserCsView.h index cf42a83126..f2c3be803d 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginUserCsView.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginUserCsView.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginUserCsView) public: BeginUserCsView(); - virtual ~BeginUserCsView(); + ~BeginUserCsView(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginUserCsViews.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginUserCsViews.h index 3e47b2db17..aaa5f2f23f 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginUserCsViews.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginUserCsViews.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginUserCsViews) public: BeginUserCsViews(); - virtual ~BeginUserCsViews(); + ~BeginUserCsViews(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginWebPubItem.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginWebPubItem.h index 1da826ed43..5669b593b3 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginWebPubItem.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginWebPubItem.h @@ -46,7 +46,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginWebPubItem) public: BeginWebPubItem(); - virtual ~BeginWebPubItem(); + ~BeginWebPubItem(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginWebPubItems.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginWebPubItems.h index 76b1839563..4c999999fb 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginWebPubItems.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginWebPubItems.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginWebPubItems) public: BeginWebPubItems(); - virtual ~BeginWebPubItems(); + ~BeginWebPubItems(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginWsViews.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginWsViews.h index 6d908fe042..f9c64f0b84 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginWsViews.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BeginWsViews.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BeginWsViews) public: BeginWsViews(); - virtual ~BeginWsViews(); + ~BeginWsViews(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BkHim.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BkHim.h index 4288abe974..0d5ae0c711 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BkHim.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BkHim.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BkHim) public: BkHim(); - virtual ~BkHim(); + ~BkHim(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BookProtection.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BookProtection.h index 564bf30b44..000de6a0b8 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BookProtection.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BookProtection.h @@ -46,7 +46,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BookProtection) public: BookProtection(); - virtual ~BookProtection(); + ~BookProtection(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BookProtectionIso.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BookProtectionIso.h index 6591045cc0..8f9d2b851a 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BookProtectionIso.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BookProtectionIso.h @@ -47,7 +47,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BookProtectionIso) public: BookProtectionIso(); - virtual ~BookProtectionIso(); + ~BookProtectionIso(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/Border.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/Border.h index 3fab1f9fad..aecaf5f41e 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/Border.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/Border.h @@ -46,7 +46,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(Border) public: Border(); - virtual ~Border(); + ~Border(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/Brk.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/Brk.h index e18d15607a..df57dc2db3 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/Brk.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/Brk.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(Brk) public: Brk(); - virtual ~Brk(); + ~Brk(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BundleSh.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BundleSh.h index d501b04e4a..cb1dcef805 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BundleSh.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/BundleSh.h @@ -48,7 +48,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BundleSh) public: BundleSh(); - virtual ~BundleSh(); + ~BundleSh(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/CFIcon.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/CFIcon.h index 12a9422a7e..8d2e930ae1 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/CFIcon.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/CFIcon.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(CFIcon) public: CFIcon(); - virtual ~CFIcon(); + ~CFIcon(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/CFRuleExt.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/CFRuleExt.h index d9cd580625..9fd71b3bd0 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/CFRuleExt.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/CFRuleExt.h @@ -46,7 +46,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(CFRuleExt) public: CFRuleExt(); - virtual ~CFRuleExt(); + ~CFRuleExt(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/CFVO.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/CFVO.h index cbc416d993..16ac6c7a2e 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/CFVO.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/CFVO.h @@ -48,7 +48,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(CFVO) public: CFVO(); - virtual ~CFVO(); + ~CFVO(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/CFVO14.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/CFVO14.h index 3425faf8d2..f07faf6095 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/CFVO14.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/CFVO14.h @@ -48,7 +48,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(CFVO14) public: CFVO14(); - virtual ~CFVO14(); + ~CFVO14(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/CalcProp.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/CalcProp.h index e4050ba864..71bff77a20 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/CalcProp.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/CalcProp.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(CalcProp) public: CalcProp(); - virtual ~CalcProp(); + ~CalcProp(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/Cell.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/Cell.h index 92b112019f..eaf7ef3a6d 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/Cell.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/Cell.h @@ -44,6 +44,7 @@ class CellBase { public: Cell cell; + virtual ~CellBase(){} }; template @@ -69,7 +70,7 @@ class Cell_T: public CellBase, public XLS::BiffRecord } return str; } - virtual ~Cell_T() + ~Cell_T() { } diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/CellMeta.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/CellMeta.h index d342c137b5..75af12a333 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/CellMeta.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/CellMeta.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(CellMeta) public: CellMeta(); - virtual ~CellMeta(); + ~CellMeta(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/Color.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/Color.h index 862d99db9c..67bdde53c3 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/Color.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/Color.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(Color) public: Color(); - virtual ~Color(); + ~Color(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/Color14.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/Color14.h index 7266fe7df8..52b93e9783 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/Color14.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/Color14.h @@ -47,7 +47,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(Color14) public: Color14(); - virtual ~Color14(); + ~Color14(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/ColorFilter.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/ColorFilter.h index 706c9f4487..51748147b8 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/ColorFilter.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/ColorFilter.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(ColorFilter) public: ColorFilter(); - virtual ~ColorFilter(); + ~ColorFilter(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/CommentAuthor.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/CommentAuthor.h index 8ef72506ee..f3d3e2f658 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/CommentAuthor.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/CommentAuthor.h @@ -46,7 +46,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(CommentAuthor) public: CommentAuthor(); - virtual ~CommentAuthor(); + ~CommentAuthor(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/CommentText.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/CommentText.h index 00539a847d..9356c1c5d2 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/CommentText.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/CommentText.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(CommentText) public: CommentText(); - virtual ~CommentText(); + ~CommentText(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/CsProp.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/CsProp.h index f173a6175a..eec7d34848 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/CsProp.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/CsProp.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(CsProp) public: CsProp(); - virtual ~CsProp(); + ~CsProp(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/CsProtection.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/CsProtection.h index 0d72344deb..53d5274333 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/CsProtection.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/CsProtection.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(CsProtection) public: CsProtection(); - virtual ~CsProtection(); + ~CsProtection(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/CsProtectionIso.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/CsProtectionIso.h index dc48b7adcb..93dcd0d4a3 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/CsProtectionIso.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/CsProtectionIso.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(CsProtectionIso) public: CsProtectionIso(); - virtual ~CsProtectionIso(); + ~CsProtectionIso(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/CustomFilter.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/CustomFilter.h index 145caffcff..ace676dfd4 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/CustomFilter.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/CustomFilter.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(CustomFilter) public: CustomFilter(); - virtual ~CustomFilter(); + ~CustomFilter(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/CustomFilter14.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/CustomFilter14.h index 205d85f5f7..43134aaf5a 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/CustomFilter14.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/CustomFilter14.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(CustomFilter14) public: CustomFilter14(); - virtual ~CustomFilter14(); + ~CustomFilter14(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/CustomRichFilter.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/CustomRichFilter.h index 891ddc52af..045306cf4a 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/CustomRichFilter.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/CustomRichFilter.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(CustomRichFilter) public: CustomRichFilter(); - virtual ~CustomRichFilter(); + ~CustomRichFilter(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/DRef.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/DRef.h index dd66d44a45..41584db7c5 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/DRef.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/DRef.h @@ -46,7 +46,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(DRef) public: DRef(); - virtual ~DRef(); + ~DRef(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/DValList.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/DValList.h index b06c87c2e4..169bdde5e0 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/DValList.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/DValList.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(DValList) public: DValList(); - virtual ~DValList(); + ~DValList(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/DbCommand15.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/DbCommand15.h index ce4631d30c..f24157427b 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/DbCommand15.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/DbCommand15.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(DbCommand15) public: DbCommand15(); - virtual ~DbCommand15(); + ~DbCommand15(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/DbTable15.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/DbTable15.h index b937dbebbf..2c1032c99a 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/DbTable15.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/DbTable15.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(DbTable15) public: DbTable15(); - virtual ~DbTable15(); + ~DbTable15(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/Drawing.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/Drawing.h index 4ea8b8ea51..d5b52468d0 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/Drawing.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/Drawing.h @@ -46,7 +46,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(Drawing) public: Drawing(); - virtual ~Drawing(); + ~Drawing(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/DynamicFilter.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/DynamicFilter.h index 5fec6145ae..364090bbf5 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/DynamicFilter.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/DynamicFilter.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(DynamicFilter) public: DynamicFilter(); - virtual ~DynamicFilter(); + ~DynamicFilter(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/DynamicRichFilter.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/DynamicRichFilter.h index 245c70daad..75628fd49d 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/DynamicRichFilter.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/DynamicRichFilter.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(DynamicRichFilter) public: DynamicRichFilter(); - virtual ~DynamicRichFilter(); + ~DynamicRichFilter(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndAFilter.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndAFilter.h index 65e5cc1c3c..a69baac64d 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndAFilter.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndAFilter.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndAFilter) public: EndAFilter(); - virtual ~EndAFilter(); + ~EndAFilter(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndActiveXControls.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndActiveXControls.h index 43786e4783..4f11b142e6 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndActiveXControls.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndActiveXControls.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndActiveXControls) public: EndActiveXControls(); - virtual ~EndActiveXControls(); + ~EndActiveXControls(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndAutoSortScope.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndAutoSortScope.h index 755951c443..297f855165 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndAutoSortScope.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndAutoSortScope.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndAutoSortScope) public: EndAutoSortScope(); - virtual ~EndAutoSortScope(); + ~EndAutoSortScope(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndBook.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndBook.h index f351b17bcf..d12bd79cd6 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndBook.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndBook.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndBook) public: EndBook(); - virtual ~EndBook(); + ~EndBook(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndBookViews.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndBookViews.h index f196e15187..42ab59bd70 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndBookViews.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndBookViews.h @@ -46,7 +46,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndBookViews) public: EndBookViews(); - virtual ~EndBookViews(); + ~EndBookViews(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndBorders.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndBorders.h index 5a13b400c2..77c11f98aa 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndBorders.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndBorders.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndBorders) public: EndBorders(); - virtual ~EndBorders(); + ~EndBorders(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndBundleShs.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndBundleShs.h index 95bc0b4bce..a57bcf908e 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndBundleShs.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndBundleShs.h @@ -46,7 +46,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndBundleShs) public: EndBundleShs(); - virtual ~EndBundleShs(); + ~EndBundleShs(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndCFRule.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndCFRule.h index 08b767ffe4..8fa551a829 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndCFRule.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndCFRule.h @@ -46,7 +46,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndCFRule) public: EndCFRule(); - virtual ~EndCFRule(); + ~EndCFRule(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndCFRule14.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndCFRule14.h index 429a648027..afcd11591a 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndCFRule14.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndCFRule14.h @@ -46,7 +46,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndCFRule14) public: EndCFRule14(); - virtual ~EndCFRule14(); + ~EndCFRule14(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndCellStyleXFs.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndCellStyleXFs.h index 30f853bbaa..0caa6cc26b 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndCellStyleXFs.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndCellStyleXFs.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndCellStyleXFs) public: EndCellStyleXFs(); - virtual ~EndCellStyleXFs(); + ~EndCellStyleXFs(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndCellXFs.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndCellXFs.h index 32ba733cfa..a65d6e40f0 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndCellXFs.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndCellXFs.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndCellXFs) public: EndCellXFs(); - virtual ~EndCellXFs(); + ~EndCellXFs(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndColBrk.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndColBrk.h index 8f727cbbce..4ac2018164 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndColBrk.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndColBrk.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndColBrk) public: EndColBrk(); - virtual ~EndColBrk(); + ~EndColBrk(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndColInfos.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndColInfos.h index c3d59bdf13..132bc1b8ba 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndColInfos.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndColInfos.h @@ -46,7 +46,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndColInfos) public: EndColInfos(); - virtual ~EndColInfos(); + ~EndColInfos(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndColorPalette.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndColorPalette.h index 8e0526960d..9199dcb4e0 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndColorPalette.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndColorPalette.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndColorPalette) public: EndColorPalette(); - virtual ~EndColorPalette(); + ~EndColorPalette(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndColorScale.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndColorScale.h index 7b6b4afebb..24074d0421 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndColorScale.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndColorScale.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndColorScale) public: EndColorScale(); - virtual ~EndColorScale(); + ~EndColorScale(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndColorScale14.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndColorScale14.h index 1e3b8e2f2a..79248f9c03 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndColorScale14.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndColorScale14.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndColorScale14) public: EndColorScale14(); - virtual ~EndColorScale14(); + ~EndColorScale14(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndComment.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndComment.h index 7b70f93a54..a4702115fe 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndComment.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndComment.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndComment) public: EndComment(); - virtual ~EndComment(); + ~EndComment(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndCommentAuthors.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndCommentAuthors.h index 30f7081b6f..cffe23addc 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndCommentAuthors.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndCommentAuthors.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndCommentAuthors) public: EndCommentAuthors(); - virtual ~EndCommentAuthors(); + ~EndCommentAuthors(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndCommentList.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndCommentList.h index 542cc543ab..6a32fcde22 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndCommentList.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndCommentList.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndCommentList) public: EndCommentList(); - virtual ~EndCommentList(); + ~EndCommentList(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndComments.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndComments.h index a680e6f540..9a9d3c30b8 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndComments.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndComments.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndComments) public: EndComments(); - virtual ~EndComments(); + ~EndComments(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndConditionalFormatting.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndConditionalFormatting.h index 654f8798db..3f8fdcdd12 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndConditionalFormatting.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndConditionalFormatting.h @@ -46,7 +46,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndConditionalFormatting) public: EndConditionalFormatting(); - virtual ~EndConditionalFormatting(); + ~EndConditionalFormatting(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndConditionalFormatting14.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndConditionalFormatting14.h index f88a00fd95..25649f0997 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndConditionalFormatting14.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndConditionalFormatting14.h @@ -46,7 +46,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndConditionalFormatting14) public: EndConditionalFormatting14(); - virtual ~EndConditionalFormatting14(); + ~EndConditionalFormatting14(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndConditionalFormattings.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndConditionalFormattings.h index ff361086fa..4a39ff7229 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndConditionalFormattings.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndConditionalFormattings.h @@ -46,7 +46,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndConditionalFormattings) public: EndConditionalFormattings(); - virtual ~EndConditionalFormattings(); + ~EndConditionalFormattings(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndCsView.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndCsView.h index 6ac7ecf3f0..081dc2e582 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndCsView.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndCsView.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndCsView) public: EndCsView(); - virtual ~EndCsView(); + ~EndCsView(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndCsViews.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndCsViews.h index 15739fe45c..ea8fa4a092 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndCsViews.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndCsViews.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndCsViews) public: EndCsViews(); - virtual ~EndCsViews(); + ~EndCsViews(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndCustomFilters.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndCustomFilters.h index b213b3ae2e..599fac4d83 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndCustomFilters.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndCustomFilters.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndCustomFilters) public: EndCustomFilters(); - virtual ~EndCustomFilters(); + ~EndCustomFilters(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndCustomRichFilters.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndCustomRichFilters.h index 016d0b5aae..0cb9f88ac7 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndCustomRichFilters.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndCustomRichFilters.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndCustomRichFilters) public: EndCustomRichFilters(); - virtual ~EndCustomRichFilters(); + ~EndCustomRichFilters(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndDCon.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndDCon.h index e91d17b4b2..b699b2cfc4 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndDCon.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndDCon.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndDCon) public: EndDCon(); - virtual ~EndDCon(); + ~EndDCon(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndDRefs.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndDRefs.h index 6611397e6c..ac1dcdf524 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndDRefs.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndDRefs.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndDRefs) public: EndDRefs(); - virtual ~EndDRefs(); + ~EndDRefs(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndDVals.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndDVals.h index a5a2c23301..cc4c44b840 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndDVals.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndDVals.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndDVals) public: EndDVals(); - virtual ~EndDVals(); + ~EndDVals(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndDVals14.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndDVals14.h index 100f43e962..af69868beb 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndDVals14.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndDVals14.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndDVals14) public: EndDVals14(); - virtual ~EndDVals14(); + ~EndDVals14(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndDXF14s.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndDXF14s.h index a93cf1944b..9d07b8ceb6 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndDXF14s.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndDXF14s.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndDXF14s) public: EndDXF14s(); - virtual ~EndDXF14s(); + ~EndDXF14s(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndDXFs.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndDXFs.h index 095961cf68..e5204c4de1 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndDXFs.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndDXFs.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndDXFs) public: EndDXFs(); - virtual ~EndDXFs(); + ~EndDXFs(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndDXFs15.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndDXFs15.h index 4569155a64..10286c1248 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndDXFs15.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndDXFs15.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndDXFs15) public: EndDXFs15(); - virtual ~EndDXFs15(); + ~EndDXFs15(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndDataFeedPr15.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndDataFeedPr15.h index cc9d61b93c..bdb6e04bf6 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndDataFeedPr15.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndDataFeedPr15.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndDataFeedPr15) public: EndDataFeedPr15(); - virtual ~EndDataFeedPr15(); + ~EndDataFeedPr15(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndDatabar.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndDatabar.h index 298b6859f9..ac1a1a4431 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndDatabar.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndDatabar.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndDatabar) public: EndDatabar(); - virtual ~EndDatabar(); + ~EndDatabar(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndDatabar14.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndDatabar14.h index d48bc34d33..bb5d1096a2 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndDatabar14.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndDatabar14.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndDatabar14) public: EndDatabar14(); - virtual ~EndDatabar14(); + ~EndDatabar14(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndDbTables15.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndDbTables15.h index 30dcd28c75..4258591e2b 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndDbTables15.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndDbTables15.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndDbTables15) public: EndDbTables15(); - virtual ~EndDbTables15(); + ~EndDbTables15(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndDeletedName.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndDeletedName.h index da1b3a4c72..15a5ac2eab 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndDeletedName.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndDeletedName.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndDeletedName) public: EndDeletedName(); - virtual ~EndDeletedName(); + ~EndDeletedName(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndDeletedNames.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndDeletedNames.h index e68fba9514..8f93cc9f10 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndDeletedNames.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndDeletedNames.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndDeletedNames) public: EndDeletedNames(); - virtual ~EndDeletedNames(); + ~EndDeletedNames(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndDim.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndDim.h index 378fd2dc62..751b52007c 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndDim.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndDim.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndDim) public: EndDim(); - virtual ~EndDim(); + ~EndDim(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndDims.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndDims.h index c037ddedc3..cc5e0a227b 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndDims.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndDims.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndDims) public: EndDims(); - virtual ~EndDims(); + ~EndDims(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndECDbProps.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndECDbProps.h index 4d9febd5c3..53764baadd 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndECDbProps.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndECDbProps.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndECDbProps) public: EndECDbProps(); - virtual ~EndECDbProps(); + ~EndECDbProps(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndECOlapProps.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndECOlapProps.h index 7fe53933d4..d0e8a5478b 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndECOlapProps.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndECOlapProps.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndECOlapProps) public: EndECOlapProps(); - virtual ~EndECOlapProps(); + ~EndECOlapProps(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndECParam.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndECParam.h index 57f4d1d8b0..79497dcb27 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndECParam.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndECParam.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndECParam) public: EndECParam(); - virtual ~EndECParam(); + ~EndECParam(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndECParams.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndECParams.h index e9f725975b..f4f8fd41a7 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndECParams.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndECParams.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndECParams) public: EndECParams(); - virtual ~EndECParams(); + ~EndECParams(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndECTWFldInfoLst.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndECTWFldInfoLst.h index 85856174ec..61e9e97c04 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndECTWFldInfoLst.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndECTWFldInfoLst.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndECTWFldInfoLst) public: EndECTWFldInfoLst(); - virtual ~EndECTWFldInfoLst(); + ~EndECTWFldInfoLst(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndECTWFldInfoLst15.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndECTWFldInfoLst15.h index 9355c82902..e317b9a3b5 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndECTWFldInfoLst15.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndECTWFldInfoLst15.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndECTWFldInfoLst15) public: EndECTWFldInfoLst15(); - virtual ~EndECTWFldInfoLst15(); + ~EndECTWFldInfoLst15(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndECTxtWiz.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndECTxtWiz.h index bd53d5f927..38769396c6 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndECTxtWiz.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndECTxtWiz.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndECTxtWiz) public: EndECTxtWiz(); - virtual ~EndECTxtWiz(); + ~EndECTxtWiz(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndECTxtWiz15.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndECTxtWiz15.h index a510796aed..4952f646f3 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndECTxtWiz15.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndECTxtWiz15.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndECTxtWiz15) public: EndECTxtWiz15(); - virtual ~EndECTxtWiz15(); + ~EndECTxtWiz15(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndECWPTables.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndECWPTables.h index 7c6861fb50..0f823fff30 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndECWPTables.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndECWPTables.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndECWPTables) public: EndECWPTables(); - virtual ~EndECWPTables(); + ~EndECWPTables(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndECWebProps.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndECWebProps.h index f0521b6570..1ccb50cd6f 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndECWebProps.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndECWebProps.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndECWebProps) public: EndECWebProps(); - virtual ~EndECWebProps(); + ~EndECWebProps(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndExtConn14.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndExtConn14.h index e759d07fc3..ebb3545ff6 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndExtConn14.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndExtConn14.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndExtConn14) public: EndExtConn14(); - virtual ~EndExtConn14(); + ~EndExtConn14(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndExtConn15.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndExtConn15.h index bdfb2c088f..55e27c7384 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndExtConn15.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndExtConn15.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndExtConn15) public: EndExtConn15(); - virtual ~EndExtConn15(); + ~EndExtConn15(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndExtConnection.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndExtConnection.h index 7c6a466e30..eb0cdf035f 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndExtConnection.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndExtConnection.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndExtConnection) public: EndExtConnection(); - virtual ~EndExtConnection(); + ~EndExtConnection(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndExtConnections.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndExtConnections.h index 8d291c1411..4e81bea965 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndExtConnections.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndExtConnections.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndExtConnections) public: EndExtConnections(); - virtual ~EndExtConnections(); + ~EndExtConnections(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndExternals.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndExternals.h index 2a47469727..d8aba70a63 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndExternals.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndExternals.h @@ -46,7 +46,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndExternals) public: EndExternals(); - virtual ~EndExternals(); + ~EndExternals(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndFills.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndFills.h index 2078350ba8..101be0f10e 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndFills.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndFills.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndFills) public: EndFills(); - virtual ~EndFills(); + ~EndFills(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndFilterColumn.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndFilterColumn.h index 4095488395..2b220bda98 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndFilterColumn.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndFilterColumn.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndFilterColumn) public: EndFilterColumn(); - virtual ~EndFilterColumn(); + ~EndFilterColumn(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndFilters.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndFilters.h index 021b87a955..04a37ab191 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndFilters.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndFilters.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndFilters) public: EndFilters(); - virtual ~EndFilters(); + ~EndFilters(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndFmts.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndFmts.h index 722a7db5e1..5a21e056fa 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndFmts.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndFmts.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndFmts) public: EndFmts(); - virtual ~EndFmts(); + ~EndFmts(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndFnGroup.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndFnGroup.h index eb6517745c..5bd4c5341a 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndFnGroup.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndFnGroup.h @@ -46,7 +46,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndFnGroup) public: EndFnGroup(); - virtual ~EndFnGroup(); + ~EndFnGroup(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndFonts.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndFonts.h index a58eb9490c..35007890f6 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndFonts.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndFonts.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndFonts) public: EndFonts(); - virtual ~EndFonts(); + ~EndFonts(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndHeaderFooter.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndHeaderFooter.h index 2bfe04ab13..f93ede1a94 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndHeaderFooter.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndHeaderFooter.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndHeaderFooter) public: EndHeaderFooter(); - virtual ~EndHeaderFooter(); + ~EndHeaderFooter(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndISXTHCols.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndISXTHCols.h index ae3c490764..111e6a8e43 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndISXTHCols.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndISXTHCols.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndISXTHCols) public: EndISXTHCols(); - virtual ~EndISXTHCols(); + ~EndISXTHCols(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndISXTHRws.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndISXTHRws.h index 6c80661383..eada062eb4 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndISXTHRws.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndISXTHRws.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndISXTHRws) public: EndISXTHRws(); - virtual ~EndISXTHRws(); + ~EndISXTHRws(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndISXVDCols.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndISXVDCols.h index 676cd58784..2a89314f6a 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndISXVDCols.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndISXVDCols.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndISXVDCols) public: EndISXVDCols(); - virtual ~EndISXVDCols(); + ~EndISXVDCols(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndISXVDRws.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndISXVDRws.h index ba8cfde19e..5a0d29dcef 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndISXVDRws.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndISXVDRws.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndISXVDRws) public: EndISXVDRws(); - virtual ~EndISXVDRws(); + ~EndISXVDRws(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndISXVIs.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndISXVIs.h index 8409747453..cb4fbe2fcf 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndISXVIs.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndISXVIs.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndISXVIs) public: EndISXVIs(); - virtual ~EndISXVIs(); + ~EndISXVIs(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndIconSet.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndIconSet.h index c1c20e4988..481bb9c9d6 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndIconSet.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndIconSet.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndIconSet) public: EndIconSet(); - virtual ~EndIconSet(); + ~EndIconSet(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndIconSet14.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndIconSet14.h index 02f4b943ed..267dec4ce9 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndIconSet14.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndIconSet14.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndIconSet14) public: EndIconSet14(); - virtual ~EndIconSet14(); + ~EndIconSet14(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndIndexedColors.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndIndexedColors.h index 6d5d3f4ca4..f598b51069 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndIndexedColors.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndIndexedColors.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndIndexedColors) public: EndIndexedColors(); - virtual ~EndIndexedColors(); + ~EndIndexedColors(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndItemUniqueNames.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndItemUniqueNames.h index f1dd503e0f..1949768651 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndItemUniqueNames.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndItemUniqueNames.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndItemUniqueNames) public: EndItemUniqueNames(); - virtual ~EndItemUniqueNames(); + ~EndItemUniqueNames(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndList.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndList.h index 6e57e99266..4456252e65 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndList.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndList.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndList) public: EndList(); - virtual ~EndList(); + ~EndList(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndListCol.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndListCol.h index 3691adf516..2c622648ba 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndListCol.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndListCol.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndListCol) public: EndListCol(); - virtual ~EndListCol(); + ~EndListCol(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndListCols.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndListCols.h index 904aed8d8d..ee3f75b2aa 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndListCols.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndListCols.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndListCols) public: EndListCols(); - virtual ~EndListCols(); + ~EndListCols(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndListParts.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndListParts.h index 73e04120bd..31b9265c12 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndListParts.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndListParts.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndListParts) public: EndListParts(); - virtual ~EndListParts(); + ~EndListParts(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndListXmlCPr.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndListXmlCPr.h index 796bd41f18..409cf52628 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndListXmlCPr.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndListXmlCPr.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndListXmlCPr) public: EndListXmlCPr(); - virtual ~EndListXmlCPr(); + ~EndListXmlCPr(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndMG.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndMG.h index 5870bb3c5a..1dcdea967a 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndMG.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndMG.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndMG) public: EndMG(); - virtual ~EndMG(); + ~EndMG(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndMGMaps.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndMGMaps.h index 1767d0e250..cee2893f72 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndMGMaps.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndMGMaps.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndMGMaps) public: EndMGMaps(); - virtual ~EndMGMaps(); + ~EndMGMaps(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndMGs.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndMGs.h index 59598f5d5e..53d2c844fd 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndMGs.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndMGs.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndMGs) public: EndMGs(); - virtual ~EndMGs(); + ~EndMGs(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndMRUColors.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndMRUColors.h index 777fb4543d..d4f6285189 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndMRUColors.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndMRUColors.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndMRUColors) public: EndMRUColors(); - virtual ~EndMRUColors(); + ~EndMRUColors(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndMap.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndMap.h index 8c760976e8..ad4ac27f40 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndMap.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndMap.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndMap) public: EndMap(); - virtual ~EndMap(); + ~EndMap(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndMergeCells.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndMergeCells.h index 9f5284cca0..305c0c2426 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndMergeCells.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndMergeCells.h @@ -46,7 +46,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndMergeCells) public: EndMergeCells(); - virtual ~EndMergeCells(); + ~EndMergeCells(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndOleObjects.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndOleObjects.h index ebe3c81f8b..2ac112b47c 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndOleObjects.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndOleObjects.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndOleObjects) public: EndOleObjects(); - virtual ~EndOleObjects(); + ~EndOleObjects(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndOledbPr15.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndOledbPr15.h index 602e0df3bc..27e18a789b 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndOledbPr15.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndOledbPr15.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndOledbPr15) public: EndOledbPr15(); - virtual ~EndOledbPr15(); + ~EndOledbPr15(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCD14.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCD14.h index 5ab5e8104b..1739b8edd4 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCD14.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCD14.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndPCD14) public: EndPCD14(); - virtual ~EndPCD14(); + ~EndPCD14(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDCalcItem.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDCalcItem.h index 3636d3b24b..4c6e9c5233 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDCalcItem.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDCalcItem.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndPCDCalcItem) public: EndPCDCalcItem(); - virtual ~EndPCDCalcItem(); + ~EndPCDCalcItem(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDCalcItems.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDCalcItems.h index 6a21740067..4fbdbd9a74 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDCalcItems.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDCalcItems.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndPCDCalcItems) public: EndPCDCalcItems(); - virtual ~EndPCDCalcItems(); + ~EndPCDCalcItems(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDCalcMem.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDCalcMem.h index eedf0e78bb..a586612e2f 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDCalcMem.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDCalcMem.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndPCDCalcMem) public: EndPCDCalcMem(); - virtual ~EndPCDCalcMem(); + ~EndPCDCalcMem(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDCalcMem14.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDCalcMem14.h index 9a43c5bb42..7d24f3bfa4 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDCalcMem14.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDCalcMem14.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndPCDCalcMem14) public: EndPCDCalcMem14(); - virtual ~EndPCDCalcMem14(); + ~EndPCDCalcMem14(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDCalcMemExt.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDCalcMemExt.h index 1ea7792e5c..a3fd0f2166 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDCalcMemExt.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDCalcMemExt.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndPCDCalcMemExt) public: EndPCDCalcMemExt(); - virtual ~EndPCDCalcMemExt(); + ~EndPCDCalcMemExt(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDCalcMems.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDCalcMems.h index cce9cbcc7c..22731317de 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDCalcMems.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDCalcMems.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndPCDCalcMems) public: EndPCDCalcMems(); - virtual ~EndPCDCalcMems(); + ~EndPCDCalcMems(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDCalcMemsExt.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDCalcMemsExt.h index ad19b91a4f..c9152b93d9 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDCalcMemsExt.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDCalcMemsExt.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndPCDCalcMemsExt) public: EndPCDCalcMemsExt(); - virtual ~EndPCDCalcMemsExt(); + ~EndPCDCalcMemsExt(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDFAtbl.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDFAtbl.h index 2ab1f020c4..1f90f10777 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDFAtbl.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDFAtbl.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndPCDFAtbl) public: EndPCDFAtbl(); - virtual ~EndPCDFAtbl(); + ~EndPCDFAtbl(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDFGDiscrete.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDFGDiscrete.h index 67e246fc13..3d517bcd98 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDFGDiscrete.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDFGDiscrete.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndPCDFGDiscrete) public: EndPCDFGDiscrete(); - virtual ~EndPCDFGDiscrete(); + ~EndPCDFGDiscrete(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDFGItems.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDFGItems.h index 5f67944e8f..e73d253594 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDFGItems.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDFGItems.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndPCDFGItems) public: EndPCDFGItems(); - virtual ~EndPCDFGItems(); + ~EndPCDFGItems(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDFGRange.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDFGRange.h index 9b824dcabc..3aa99af72d 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDFGRange.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDFGRange.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndPCDFGRange) public: EndPCDFGRange(); - virtual ~EndPCDFGRange(); + ~EndPCDFGRange(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDFGroup.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDFGroup.h index e55c1d5101..ef3d0eba2b 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDFGroup.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDFGroup.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndPCDFGroup) public: EndPCDFGroup(); - virtual ~EndPCDFGroup(); + ~EndPCDFGroup(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDField.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDField.h index 79ebfccf1f..c7fa5690ca 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDField.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDField.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndPCDField) public: EndPCDField(); - virtual ~EndPCDField(); + ~EndPCDField(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDFields.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDFields.h index c9186b669b..fd5cf21b9b 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDFields.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDFields.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndPCDFields) public: EndPCDFields(); - virtual ~EndPCDFields(); + ~EndPCDFields(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDHFieldsUsage.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDHFieldsUsage.h index f83c3dadc9..bf1c74c8a6 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDHFieldsUsage.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDHFieldsUsage.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndPCDHFieldsUsage) public: EndPCDHFieldsUsage(); - virtual ~EndPCDHFieldsUsage(); + ~EndPCDHFieldsUsage(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDHGLGMember.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDHGLGMember.h index 1e85e2eb08..87b101a23b 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDHGLGMember.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDHGLGMember.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndPCDHGLGMember) public: EndPCDHGLGMember(); - virtual ~EndPCDHGLGMember(); + ~EndPCDHGLGMember(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDHGLGMembers.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDHGLGMembers.h index 217fcc36e1..034b07558c 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDHGLGMembers.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDHGLGMembers.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndPCDHGLGMembers) public: EndPCDHGLGMembers(); - virtual ~EndPCDHGLGMembers(); + ~EndPCDHGLGMembers(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDHGLGroup.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDHGLGroup.h index 3b428f4016..6d8f775011 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDHGLGroup.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDHGLGroup.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndPCDHGLGroup) public: EndPCDHGLGroup(); - virtual ~EndPCDHGLGroup(); + ~EndPCDHGLGroup(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDHGLGroups.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDHGLGroups.h index bdf2b3ded8..8482e29736 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDHGLGroups.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDHGLGroups.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndPCDHGLGroups) public: EndPCDHGLGroups(); - virtual ~EndPCDHGLGroups(); + ~EndPCDHGLGroups(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDHGLevel.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDHGLevel.h index 59c134ecde..9113101390 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDHGLevel.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDHGLevel.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndPCDHGLevel) public: EndPCDHGLevel(); - virtual ~EndPCDHGLevel(); + ~EndPCDHGLevel(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDHGLevels.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDHGLevels.h index 848e9bffdd..969dfbd369 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDHGLevels.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDHGLevels.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndPCDHGLevels) public: EndPCDHGLevels(); - virtual ~EndPCDHGLevels(); + ~EndPCDHGLevels(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDHierarchies.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDHierarchies.h index 5313b7654c..7144eb8b81 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDHierarchies.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDHierarchies.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndPCDHierarchies) public: EndPCDHierarchies(); - virtual ~EndPCDHierarchies(); + ~EndPCDHierarchies(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDHierarchy.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDHierarchy.h index e9f752a392..d4c40850cc 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDHierarchy.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDHierarchy.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndPCDHierarchy) public: EndPCDHierarchy(); - virtual ~EndPCDHierarchy(); + ~EndPCDHierarchy(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDIRun.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDIRun.h index 6a36845988..2b6bd32824 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDIRun.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDIRun.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndPCDIRun) public: EndPCDIRun(); - virtual ~EndPCDIRun(); + ~EndPCDIRun(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDKPI.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDKPI.h index ecef018eb5..f834accae5 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDKPI.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDKPI.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndPCDKPI) public: EndPCDKPI(); - virtual ~EndPCDKPI(); + ~EndPCDKPI(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDKPIs.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDKPIs.h index e123e9e450..77a732c5d5 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDKPIs.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDKPIs.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndPCDKPIs) public: EndPCDKPIs(); - virtual ~EndPCDKPIs(); + ~EndPCDKPIs(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDSCPItem.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDSCPItem.h index 7871bc067d..ff07dd4aac 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDSCPItem.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDSCPItem.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndPCDSCPItem) public: EndPCDSCPItem(); - virtual ~EndPCDSCPItem(); + ~EndPCDSCPItem(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDSCPage.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDSCPage.h index 0d11909827..578a67ceeb 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDSCPage.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDSCPage.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndPCDSCPage) public: EndPCDSCPage(); - virtual ~EndPCDSCPage(); + ~EndPCDSCPage(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDSCPages.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDSCPages.h index 83fb8b2ec1..7bcd9cbcc1 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDSCPages.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDSCPages.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndPCDSCPages) public: EndPCDSCPages(); - virtual ~EndPCDSCPages(); + ~EndPCDSCPages(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDSCSet.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDSCSet.h index 4fa95ee6a5..5b2ddc9255 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDSCSet.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDSCSet.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndPCDSCSet) public: EndPCDSCSet(); - virtual ~EndPCDSCSet(); + ~EndPCDSCSet(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDSCSets.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDSCSets.h index d61642924c..613b7faa0f 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDSCSets.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDSCSets.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndPCDSCSets) public: EndPCDSCSets(); - virtual ~EndPCDSCSets(); + ~EndPCDSCSets(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDSConsol.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDSConsol.h index 797f7f548b..e73805de9d 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDSConsol.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDSConsol.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndPCDSConsol) public: EndPCDSConsol(); - virtual ~EndPCDSConsol(); + ~EndPCDSConsol(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDSDTCEMember.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDSDTCEMember.h index eacd19e84e..85f39ecb49 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDSDTCEMember.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDSDTCEMember.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndPCDSDTCEMember) public: EndPCDSDTCEMember(); - virtual ~EndPCDSDTCEMember(); + ~EndPCDSDTCEMember(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDSDTCEMembers.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDSDTCEMembers.h index fee6bea611..dc18628cdf 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDSDTCEMembers.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDSDTCEMembers.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndPCDSDTCEMembers) public: EndPCDSDTCEMembers(); - virtual ~EndPCDSDTCEMembers(); + ~EndPCDSDTCEMembers(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDSDTCEntries.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDSDTCEntries.h index 1d3a9a9450..b032889351 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDSDTCEntries.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDSDTCEntries.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndPCDSDTCEntries) public: EndPCDSDTCEntries(); - virtual ~EndPCDSDTCEntries(); + ~EndPCDSDTCEntries(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDSDTCQueries.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDSDTCQueries.h index 5a7402ab68..850997847f 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDSDTCQueries.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDSDTCQueries.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndPCDSDTCQueries) public: EndPCDSDTCQueries(); - virtual ~EndPCDSDTCQueries(); + ~EndPCDSDTCQueries(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDSDTCQuery.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDSDTCQuery.h index a5052b46fe..c970f816f0 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDSDTCQuery.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDSDTCQuery.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndPCDSDTCQuery) public: EndPCDSDTCQuery(); - virtual ~EndPCDSDTCQuery(); + ~EndPCDSDTCQuery(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDSDTCSet.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDSDTCSet.h index 35230c1edb..f324b96fa9 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDSDTCSet.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDSDTCSet.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndPCDSDTCSet) public: EndPCDSDTCSet(); - virtual ~EndPCDSDTCSet(); + ~EndPCDSDTCSet(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDSDTCSets.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDSDTCSets.h index 7d045c95ba..54e621f8e2 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDSDTCSets.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDSDTCSets.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndPCDSDTCSets) public: EndPCDSDTCSets(); - virtual ~EndPCDSDTCSets(); + ~EndPCDSDTCSets(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDSDTupleCache.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDSDTupleCache.h index 731525b3b4..d4fa892d5a 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDSDTupleCache.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDSDTupleCache.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndPCDSDTupleCache) public: EndPCDSDTupleCache(); - virtual ~EndPCDSDTupleCache(); + ~EndPCDSDTupleCache(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDSFCIEntries.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDSFCIEntries.h index 17d5b2d8e9..a7a969082a 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDSFCIEntries.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDSFCIEntries.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndPCDSFCIEntries) public: EndPCDSFCIEntries(); - virtual ~EndPCDSFCIEntries(); + ~EndPCDSFCIEntries(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDSRange.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDSRange.h index 51b09503ff..2f665b67f8 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDSRange.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDSRange.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndPCDSRange) public: EndPCDSRange(); - virtual ~EndPCDSRange(); + ~EndPCDSRange(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDSource.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDSource.h index 719eb9f346..a6c03f70e4 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDSource.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPCDSource.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndPCDSource) public: EndPCDSource(); - virtual ~EndPCDSource(); + ~EndPCDSource(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPNPair.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPNPair.h index ac648a06e9..06b663b19a 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPNPair.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPNPair.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndPNPair) public: EndPNPair(); - virtual ~EndPNPair(); + ~EndPNPair(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPNPairs.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPNPairs.h index 7c16bf29a2..2826ecd4be 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPNPairs.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPNPairs.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndPNPairs) public: EndPNPairs(); - virtual ~EndPNPairs(); + ~EndPNPairs(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPName.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPName.h index 8fce6604a5..7cdadf097e 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPName.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPName.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndPName) public: EndPName(); - virtual ~EndPName(); + ~EndPName(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPNames.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPNames.h index 03684df410..4bd071e50a 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPNames.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPNames.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndPNames) public: EndPNames(); - virtual ~EndPNames(); + ~EndPNames(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPRFItem.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPRFItem.h index 2b0eec0a80..fb6552022e 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPRFItem.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPRFItem.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndPRFItem) public: EndPRFItem(); - virtual ~EndPRFItem(); + ~EndPRFItem(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPRFItem14.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPRFItem14.h index 38303306f5..981601a9f2 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPRFItem14.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPRFItem14.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndPRFItem14) public: EndPRFItem14(); - virtual ~EndPRFItem14(); + ~EndPRFItem14(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPRFilter.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPRFilter.h index 344f192676..8da7bbb1d3 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPRFilter.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPRFilter.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndPRFilter) public: EndPRFilter(); - virtual ~EndPRFilter(); + ~EndPRFilter(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPRFilter14.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPRFilter14.h index b233b621e5..308fbc82ab 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPRFilter14.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPRFilter14.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndPRFilter14) public: EndPRFilter14(); - virtual ~EndPRFilter14(); + ~EndPRFilter14(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPRFilters.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPRFilters.h index 775692c258..6baf0dc95b 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPRFilters.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPRFilters.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndPRFilters) public: EndPRFilters(); - virtual ~EndPRFilters(); + ~EndPRFilters(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPRFilters14.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPRFilters14.h index 3444a3c720..cc78c7594e 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPRFilters14.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPRFilters14.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndPRFilters14) public: EndPRFilters14(); - virtual ~EndPRFilters14(); + ~EndPRFilters14(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPRule.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPRule.h index 88110043c2..4e50f216f4 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPRule.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPRule.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndPRule) public: EndPRule(); - virtual ~EndPRule(); + ~EndPRule(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPRule14.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPRule14.h index 1a01d97af3..9a98f2c022 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPRule14.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPRule14.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndPRule14) public: EndPRule14(); - virtual ~EndPRule14(); + ~EndPRule14(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPivotCacheDef.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPivotCacheDef.h index 79b9648ffc..c093aa9812 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPivotCacheDef.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPivotCacheDef.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndPivotCacheDef) public: EndPivotCacheDef(); - virtual ~EndPivotCacheDef(); + ~EndPivotCacheDef(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPivotCacheID.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPivotCacheID.h index 1e7c88290f..fe80e9d5e6 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPivotCacheID.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPivotCacheID.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndPivotCacheID) public: EndPivotCacheID(); - virtual ~EndPivotCacheID(); + ~EndPivotCacheID(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPivotCacheIDs.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPivotCacheIDs.h index 986fe2b839..dac34df8f5 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPivotCacheIDs.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPivotCacheIDs.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndPivotCacheIDs) public: EndPivotCacheIDs(); - virtual ~EndPivotCacheIDs(); + ~EndPivotCacheIDs(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPivotCacheRecords.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPivotCacheRecords.h index e8ce036494..b5b572cc0f 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPivotCacheRecords.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPivotCacheRecords.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndPivotCacheRecords) public: EndPivotCacheRecords(); - virtual ~EndPivotCacheRecords(); + ~EndPivotCacheRecords(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPivotTableUISettings.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPivotTableUISettings.h index 31b723ad28..d28a0f92b2 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPivotTableUISettings.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndPivotTableUISettings.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndPivotTableUISettings) public: EndPivotTableUISettings(); - virtual ~EndPivotTableUISettings(); + ~EndPivotTableUISettings(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndQSI.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndQSI.h index 7de15e6c05..59cef9e144 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndQSI.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndQSI.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndQSI) public: EndQSI(); - virtual ~EndQSI(); + ~EndQSI(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndQSIF.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndQSIF.h index fa58313bbf..eca08f6403 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndQSIF.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndQSIF.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndQSIF) public: EndQSIF(); - virtual ~EndQSIF(); + ~EndQSIF(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndQSIFs.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndQSIFs.h index 3fcdae2541..3261509ba1 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndQSIFs.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndQSIFs.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndQSIFs) public: EndQSIFs(); - virtual ~EndQSIFs(); + ~EndQSIFs(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndQSIR.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndQSIR.h index 66bf29cbc9..85caa5abb6 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndQSIR.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndQSIR.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndQSIR) public: EndQSIR(); - virtual ~EndQSIR(); + ~EndQSIR(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndRichFilterColumn.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndRichFilterColumn.h index dda868a8c8..9fc8ce4ab2 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndRichFilterColumn.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndRichFilterColumn.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndRichFilterColumn) public: EndRichFilterColumn(); - virtual ~EndRichFilterColumn(); + ~EndRichFilterColumn(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndRichFilters.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndRichFilters.h index 1360b4d920..d51c9fce88 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndRichFilters.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndRichFilters.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndRichFilters) public: EndRichFilters(); - virtual ~EndRichFilters(); + ~EndRichFilters(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndRichSortCondition.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndRichSortCondition.h index 2d17e8b9f8..e649f7819e 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndRichSortCondition.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndRichSortCondition.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndRichSortCondition) public: EndRichSortCondition(); - virtual ~EndRichSortCondition(); + ~EndRichSortCondition(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndRwBrk.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndRwBrk.h index 538e60fc41..103e85d5f9 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndRwBrk.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndRwBrk.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndRwBrk) public: EndRwBrk(); - virtual ~EndRwBrk(); + ~EndRwBrk(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXChange.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXChange.h index c69b6066ab..fad41e148c 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXChange.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXChange.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndSXChange) public: EndSXChange(); - virtual ~EndSXChange(); + ~EndSXChange(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXChanges.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXChanges.h index 8d03b2eedf..a98867bbae 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXChanges.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXChanges.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndSXChanges) public: EndSXChanges(); - virtual ~EndSXChanges(); + ~EndSXChanges(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXCondFmt.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXCondFmt.h index ead2f78e50..528227f8e5 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXCondFmt.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXCondFmt.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndSXCondFmt) public: EndSXCondFmt(); - virtual ~EndSXCondFmt(); + ~EndSXCondFmt(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXCondFmt14.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXCondFmt14.h index 730cb54a8d..936b193d8d 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXCondFmt14.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXCondFmt14.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndSXCondFmt14) public: EndSXCondFmt14(); - virtual ~EndSXCondFmt14(); + ~EndSXCondFmt14(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXCondFmts.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXCondFmts.h index ce48613e87..6e4ad513c5 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXCondFmts.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXCondFmts.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndSXCondFmts) public: EndSXCondFmts(); - virtual ~EndSXCondFmts(); + ~EndSXCondFmts(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXCondFmts14.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXCondFmts14.h index db2a5521c5..220f897ffe 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXCondFmts14.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXCondFmts14.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndSXCondFmts14) public: EndSXCondFmts14(); - virtual ~EndSXCondFmts14(); + ~EndSXCondFmts14(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXCrtFormat.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXCrtFormat.h index 9261c8a594..b2f6de97e7 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXCrtFormat.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXCrtFormat.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndSXCrtFormat) public: EndSXCrtFormat(); - virtual ~EndSXCrtFormat(); + ~EndSXCrtFormat(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXCrtFormats.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXCrtFormats.h index ee3362df15..21a21c162d 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXCrtFormats.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXCrtFormats.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndSXCrtFormats) public: EndSXCrtFormats(); - virtual ~EndSXCrtFormats(); + ~EndSXCrtFormats(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXDI.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXDI.h index d434ea1f0c..21e4bd3bd5 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXDI.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXDI.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndSXDI) public: EndSXDI(); - virtual ~EndSXDI(); + ~EndSXDI(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXDIs.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXDIs.h index c839769130..84c95c9e25 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXDIs.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXDIs.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndSXDIs) public: EndSXDIs(); - virtual ~EndSXDIs(); + ~EndSXDIs(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXEdit.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXEdit.h index 9bc73a16cd..362a67ed9b 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXEdit.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXEdit.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndSXEdit) public: EndSXEdit(); - virtual ~EndSXEdit(); + ~EndSXEdit(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXEdits.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXEdits.h index 4c75fa4997..c3e635a96e 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXEdits.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXEdits.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndSXEdits) public: EndSXEdits(); - virtual ~EndSXEdits(); + ~EndSXEdits(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXFilter.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXFilter.h index 7485317288..e366d2b08f 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXFilter.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXFilter.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndSXFilter) public: EndSXFilter(); - virtual ~EndSXFilter(); + ~EndSXFilter(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXFilters.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXFilters.h index 366e6cbd42..de99c125be 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXFilters.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXFilters.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndSXFilters) public: EndSXFilters(); - virtual ~EndSXFilters(); + ~EndSXFilters(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXFormat.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXFormat.h index d117231361..be343e94d4 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXFormat.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXFormat.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndSXFormat) public: EndSXFormat(); - virtual ~EndSXFormat(); + ~EndSXFormat(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXFormats.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXFormats.h index 5b508cd3c7..64a4185f04 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXFormats.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXFormats.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndSXFormats) public: EndSXFormats(); - virtual ~EndSXFormats(); + ~EndSXFormats(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXLI.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXLI.h index e49ef1dda7..eb0fae91b1 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXLI.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXLI.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndSXLI) public: EndSXLI(); - virtual ~EndSXLI(); + ~EndSXLI(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXLICols.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXLICols.h index caf6642df2..44a747e82c 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXLICols.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXLICols.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndSXLICols) public: EndSXLICols(); - virtual ~EndSXLICols(); + ~EndSXLICols(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXLIRws.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXLIRws.h index e9a15c0a44..dc6120b5ef 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXLIRws.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXLIRws.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndSXLIRws) public: EndSXLIRws(); - virtual ~EndSXLIRws(); + ~EndSXLIRws(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXLocation.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXLocation.h index 32d1920d3d..49167187c9 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXLocation.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXLocation.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndSXLocation) public: EndSXLocation(); - virtual ~EndSXLocation(); + ~EndSXLocation(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXPI.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXPI.h index 8515a16d6d..12794dfad5 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXPI.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXPI.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndSXPI) public: EndSXPI(); - virtual ~EndSXPI(); + ~EndSXPI(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXPIs.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXPIs.h index bff2230a34..64da2742d6 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXPIs.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXPIs.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndSXPIs) public: EndSXPIs(); - virtual ~EndSXPIs(); + ~EndSXPIs(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXRules.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXRules.h index 6e7b687b8f..db667c66a3 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXRules.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXRules.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndSXRules) public: EndSXRules(); - virtual ~EndSXRules(); + ~EndSXRules(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXRules14.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXRules14.h index 3031fcdfa2..b594dbfcbe 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXRules14.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXRules14.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndSXRules14) public: EndSXRules14(); - virtual ~EndSXRules14(); + ~EndSXRules14(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXTDMP.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXTDMP.h index a951995132..1fc5c34a53 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXTDMP.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXTDMP.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndSXTDMP) public: EndSXTDMP(); - virtual ~EndSXTDMP(); + ~EndSXTDMP(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXTDMPs.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXTDMPs.h index d4bbbf9709..943f63e165 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXTDMPs.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXTDMPs.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndSXTDMPs) public: EndSXTDMPs(); - virtual ~EndSXTDMPs(); + ~EndSXTDMPs(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXTH.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXTH.h index 1f0e9c1463..473f396900 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXTH.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXTH.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndSXTH) public: EndSXTH(); - virtual ~EndSXTH(); + ~EndSXTH(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXTHItem.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXTHItem.h index 81ac60aa8d..1e3aa6155d 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXTHItem.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXTHItem.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndSXTHItem) public: EndSXTHItem(); - virtual ~EndSXTHItem(); + ~EndSXTHItem(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXTHItems.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXTHItems.h index dc3444c6c3..8aafa3204c 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXTHItems.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXTHItems.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndSXTHItems) public: EndSXTHItems(); - virtual ~EndSXTHItems(); + ~EndSXTHItems(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXTHs.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXTHs.h index 3a3de9b4e6..5ca0549fc7 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXTHs.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXTHs.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndSXTHs) public: EndSXTHs(); - virtual ~EndSXTHs(); + ~EndSXTHs(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXTupleSet.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXTupleSet.h index 474801aafc..4c3192f9be 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXTupleSet.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXTupleSet.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndSXTupleSet) public: EndSXTupleSet(); - virtual ~EndSXTupleSet(); + ~EndSXTupleSet(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXTupleSetData.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXTupleSetData.h index 34580f131a..ac576955dc 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXTupleSetData.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXTupleSetData.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndSXTupleSetData) public: EndSXTupleSetData(); - virtual ~EndSXTupleSetData(); + ~EndSXTupleSetData(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXTupleSetHeader.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXTupleSetHeader.h index 414fe31a19..5b524e0df5 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXTupleSetHeader.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXTupleSetHeader.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndSXTupleSetHeader) public: EndSXTupleSetHeader(); - virtual ~EndSXTupleSetHeader(); + ~EndSXTupleSetHeader(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXTupleSetRow.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXTupleSetRow.h index 2401021aeb..8277c510d7 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXTupleSetRow.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXTupleSetRow.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndSXTupleSetRow) public: EndSXTupleSetRow(); - virtual ~EndSXTupleSetRow(); + ~EndSXTupleSetRow(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXVD.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXVD.h index b185571bf8..5878a097d5 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXVD.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXVD.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndSXVD) public: EndSXVD(); - virtual ~EndSXVD(); + ~EndSXVD(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXVDs.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXVDs.h index 01327164f9..a3df37006b 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXVDs.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXVDs.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndSXVDs) public: EndSXVDs(); - virtual ~EndSXVDs(); + ~EndSXVDs(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXVI.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXVI.h index 391145f1d8..8dfe6e70e8 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXVI.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXVI.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndSXVI) public: EndSXVI(); - virtual ~EndSXVI(); + ~EndSXVI(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXVIs.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXVIs.h index 3cfc6ca6ca..48d75984cf 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXVIs.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXVIs.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndSXVIs) public: EndSXVIs(); - virtual ~EndSXVIs(); + ~EndSXVIs(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXView.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXView.h index 4431bb0111..ab8f77c0a7 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXView.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXView.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndSXView) public: EndSXView(); - virtual ~EndSXView(); + ~EndSXView(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXView14.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXView14.h index 07b26a38a1..5922720670 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXView14.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXView14.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndSXView14) public: EndSXView14(); - virtual ~EndSXView14(); + ~EndSXView14(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXView16.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXView16.h index dca2d7c20e..f0d0c5668d 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXView16.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSXView16.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndSXView16) public: EndSXView16(); - virtual ~EndSXView16(); + ~EndSXView16(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSheet.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSheet.h index 4e84289fc7..1baee0a9f9 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSheet.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSheet.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndSheet) public: EndSheet(); - virtual ~EndSheet(); + ~EndSheet(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSheetData.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSheetData.h index 37d0176d97..fc93137a89 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSheetData.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSheetData.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndSheetData) public: EndSheetData(); - virtual ~EndSheetData(); + ~EndSheetData(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSlicer.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSlicer.h index 6f55df085c..447eada809 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSlicer.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSlicer.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndSlicer) public: EndSlicer(); - virtual ~EndSlicer(); + ~EndSlicer(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSlicerCache.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSlicerCache.h index 6c35af3f86..b1b23b90cf 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSlicerCache.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSlicerCache.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndSlicerCache) public: EndSlicerCache(); - virtual ~EndSlicerCache(); + ~EndSlicerCache(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSlicerCacheDef.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSlicerCacheDef.h index b2ebc29e07..7c7b0676fa 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSlicerCacheDef.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSlicerCacheDef.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndSlicerCacheDef) public: EndSlicerCacheDef(); - virtual ~EndSlicerCacheDef(); + ~EndSlicerCacheDef(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSlicerCacheID.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSlicerCacheID.h index 93ace2c96f..864d25f44a 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSlicerCacheID.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSlicerCacheID.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndSlicerCacheID) public: EndSlicerCacheID(); - virtual ~EndSlicerCacheID(); + ~EndSlicerCacheID(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSlicerCacheIDs.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSlicerCacheIDs.h index fbdc77809b..90317cbf9d 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSlicerCacheIDs.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSlicerCacheIDs.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndSlicerCacheIDs) public: EndSlicerCacheIDs(); - virtual ~EndSlicerCacheIDs(); + ~EndSlicerCacheIDs(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSlicerCacheLevelData.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSlicerCacheLevelData.h index fb0eddf1f6..9156fe8d9e 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSlicerCacheLevelData.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSlicerCacheLevelData.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndSlicerCacheLevelData) public: EndSlicerCacheLevelData(); - virtual ~EndSlicerCacheLevelData(); + ~EndSlicerCacheLevelData(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSlicerCacheLevelsData.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSlicerCacheLevelsData.h index f19a24a4b0..749c0f574e 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSlicerCacheLevelsData.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSlicerCacheLevelsData.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndSlicerCacheLevelsData) public: EndSlicerCacheLevelsData(); - virtual ~EndSlicerCacheLevelsData(); + ~EndSlicerCacheLevelsData(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSlicerCacheNative.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSlicerCacheNative.h index cffc7ac11a..b94100baf5 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSlicerCacheNative.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSlicerCacheNative.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndSlicerCacheNative) public: EndSlicerCacheNative(); - virtual ~EndSlicerCacheNative(); + ~EndSlicerCacheNative(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSlicerCacheOlapImpl.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSlicerCacheOlapImpl.h index 5f2339434e..78a769b71f 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSlicerCacheOlapImpl.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSlicerCacheOlapImpl.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndSlicerCacheOlapImpl) public: EndSlicerCacheOlapImpl(); - virtual ~EndSlicerCacheOlapImpl(); + ~EndSlicerCacheOlapImpl(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSlicerCacheSelections.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSlicerCacheSelections.h index 3c1c198e78..4220c2f920 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSlicerCacheSelections.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSlicerCacheSelections.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndSlicerCacheSelections) public: EndSlicerCacheSelections(); - virtual ~EndSlicerCacheSelections(); + ~EndSlicerCacheSelections(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSlicerCacheSiRange.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSlicerCacheSiRange.h index 4f49963085..6dd56bb6f7 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSlicerCacheSiRange.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSlicerCacheSiRange.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndSlicerCacheSiRange) public: EndSlicerCacheSiRange(); - virtual ~EndSlicerCacheSiRange(); + ~EndSlicerCacheSiRange(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSlicerCacheSiRanges.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSlicerCacheSiRanges.h index 6337e7d91a..7214b623ea 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSlicerCacheSiRanges.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSlicerCacheSiRanges.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndSlicerCacheSiRanges) public: EndSlicerCacheSiRanges(); - virtual ~EndSlicerCacheSiRanges(); + ~EndSlicerCacheSiRanges(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSlicerCachesPivotCacheID.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSlicerCachesPivotCacheID.h index 4603a92544..84e5c4078e 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSlicerCachesPivotCacheID.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSlicerCachesPivotCacheID.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndSlicerCachesPivotCacheID) public: EndSlicerCachesPivotCacheID(); - virtual ~EndSlicerCachesPivotCacheID(); + ~EndSlicerCachesPivotCacheID(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSlicerCachesPivotCacheIDs.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSlicerCachesPivotCacheIDs.h index efb106337a..9793043a3d 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSlicerCachesPivotCacheIDs.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSlicerCachesPivotCacheIDs.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndSlicerCachesPivotCacheIDs) public: EndSlicerCachesPivotCacheIDs(); - virtual ~EndSlicerCachesPivotCacheIDs(); + ~EndSlicerCachesPivotCacheIDs(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSlicerEx.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSlicerEx.h index cabdfb60f8..ff5e2dd993 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSlicerEx.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSlicerEx.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndSlicerEx) public: EndSlicerEx(); - virtual ~EndSlicerEx(); + ~EndSlicerEx(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSlicerStyle.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSlicerStyle.h index 5b5e848f40..93c56c03b4 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSlicerStyle.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSlicerStyle.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndSlicerStyle) public: EndSlicerStyle(); - virtual ~EndSlicerStyle(); + ~EndSlicerStyle(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSlicerStyleElements.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSlicerStyleElements.h index 6e06270b9e..adb2b37957 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSlicerStyleElements.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSlicerStyleElements.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndSlicerStyleElements) public: EndSlicerStyleElements(); - virtual ~EndSlicerStyleElements(); + ~EndSlicerStyleElements(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSlicerStyles.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSlicerStyles.h index b7e1c832a3..8aea47b621 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSlicerStyles.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSlicerStyles.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndSlicerStyles) public: EndSlicerStyles(); - virtual ~EndSlicerStyles(); + ~EndSlicerStyles(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSlicers.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSlicers.h index 70b4ba2fc4..f98498a91d 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSlicers.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSlicers.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndSlicers) public: EndSlicers(); - virtual ~EndSlicers(); + ~EndSlicers(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSlicersEx.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSlicersEx.h index 9651faa92e..56b97e35bf 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSlicersEx.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSlicersEx.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndSlicersEx) public: EndSlicersEx(); - virtual ~EndSlicersEx(); + ~EndSlicersEx(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSortCond.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSortCond.h index 156eed6594..4262ac63ae 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSortCond.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSortCond.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndSortCond) public: EndSortCond(); - virtual ~EndSortCond(); + ~EndSortCond(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSortCond14.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSortCond14.h index dca5b86061..42f353cfe3 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSortCond14.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSortCond14.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndSortCond14) public: EndSortCond14(); - virtual ~EndSortCond14(); + ~EndSortCond14(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSortState.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSortState.h index 6499f053ec..27ebc3c836 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSortState.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSortState.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndSortState) public: EndSortState(); - virtual ~EndSortState(); + ~EndSortState(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSparklineGroup.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSparklineGroup.h index 71545f64fd..dc3b903a70 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSparklineGroup.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSparklineGroup.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndSparklineGroup) public: EndSparklineGroup(); - virtual ~EndSparklineGroup(); + ~EndSparklineGroup(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSparklineGroups.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSparklineGroups.h index 70bce19632..50022ce16d 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSparklineGroups.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSparklineGroups.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndSparklineGroups) public: EndSparklineGroups(); - virtual ~EndSparklineGroups(); + ~EndSparklineGroups(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSparklines.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSparklines.h index ff8eacd3a8..84c1267a86 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSparklines.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSparklines.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndSparklines) public: EndSparklines(); - virtual ~EndSparklines(); + ~EndSparklines(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSst.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSst.h index 0df46d02e4..0f6e581da2 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSst.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSst.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndSst) public: EndSst(); - virtual ~EndSst(); + ~EndSst(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndStyleSheet.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndStyleSheet.h index 918f8b7354..da9e3fda65 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndStyleSheet.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndStyleSheet.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndStyleSheet) public: EndStyleSheet(); - virtual ~EndStyleSheet(); + ~EndStyleSheet(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndStyleSheetExt14.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndStyleSheetExt14.h index 7cbf2f7046..ed746bc40c 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndStyleSheetExt14.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndStyleSheetExt14.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndStyleSheetExt14) public: EndStyleSheetExt14(); - virtual ~EndStyleSheetExt14(); + ~EndStyleSheetExt14(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndStyles.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndStyles.h index 42d77a2852..08ff8a9720 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndStyles.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndStyles.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndStyles) public: EndStyles(); - virtual ~EndStyles(); + ~EndStyles(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSupBook.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSupBook.h index 2457ec9b7a..8b837f00a4 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSupBook.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSupBook.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndSupBook) public: EndSupBook(); - virtual ~EndSupBook(); + ~EndSupBook(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSxRow.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSxRow.h index 12666299db..2a9064e68f 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSxRow.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSxRow.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndSxRow) public: EndSxRow(); - virtual ~EndSxRow(); + ~EndSxRow(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSxvcells.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSxvcells.h index 350a7708f0..5b5bcf3f26 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSxvcells.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndSxvcells.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndSxvcells) public: EndSxvcells(); - virtual ~EndSxvcells(); + ~EndSxvcells(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndTableSlicerCache.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndTableSlicerCache.h index e548203fa6..0eb1367f4d 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndTableSlicerCache.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndTableSlicerCache.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndTableSlicerCache) public: EndTableSlicerCache(); - virtual ~EndTableSlicerCache(); + ~EndTableSlicerCache(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndTableStyle.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndTableStyle.h index 61a2d77453..844e4c13ec 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndTableStyle.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndTableStyle.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndTableStyle) public: EndTableStyle(); - virtual ~EndTableStyle(); + ~EndTableStyle(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndTableStyles.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndTableStyles.h index ae458b6516..88af06e799 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndTableStyles.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndTableStyles.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndTableStyles) public: EndTableStyles(); - virtual ~EndTableStyles(); + ~EndTableStyles(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndTimelineStyle.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndTimelineStyle.h index 18495c7e63..9eca4242f2 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndTimelineStyle.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndTimelineStyle.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndTimelineStyle) public: EndTimelineStyle(); - virtual ~EndTimelineStyle(); + ~EndTimelineStyle(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndTimelineStyleElements.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndTimelineStyleElements.h index 075e95c0ea..79007b2e36 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndTimelineStyleElements.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndTimelineStyleElements.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndTimelineStyleElements) public: EndTimelineStyleElements(); - virtual ~EndTimelineStyleElements(); + ~EndTimelineStyleElements(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndTimelineStyleSheetExt15.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndTimelineStyleSheetExt15.h index f3833da7e7..6215db7cda 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndTimelineStyleSheetExt15.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndTimelineStyleSheetExt15.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndTimelineStyleSheetExt15) public: EndTimelineStyleSheetExt15(); - virtual ~EndTimelineStyleSheetExt15(); + ~EndTimelineStyleSheetExt15(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndTimelineStyles.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndTimelineStyles.h index c395e1a1d9..d36328dd7c 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndTimelineStyles.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndTimelineStyles.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndTimelineStyles) public: EndTimelineStyles(); - virtual ~EndTimelineStyles(); + ~EndTimelineStyles(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndUserCsView.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndUserCsView.h index 1167d1efb6..ac3d07df06 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndUserCsView.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndUserCsView.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndUserCsView) public: EndUserCsView(); - virtual ~EndUserCsView(); + ~EndUserCsView(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndUserCsViews.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndUserCsViews.h index a81961f041..0ca75b5353 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndUserCsViews.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndUserCsViews.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndUserCsViews) public: EndUserCsViews(); - virtual ~EndUserCsViews(); + ~EndUserCsViews(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndWebPubItem.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndWebPubItem.h index e5f0dd57a8..bdf371bf45 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndWebPubItem.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndWebPubItem.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndWebPubItem) public: EndWebPubItem(); - virtual ~EndWebPubItem(); + ~EndWebPubItem(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndWebPubItems.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndWebPubItems.h index 022cacd128..05841fc578 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndWebPubItems.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndWebPubItems.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndWebPubItems) public: EndWebPubItems(); - virtual ~EndWebPubItems(); + ~EndWebPubItems(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndWsView.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndWsView.h index 16ddf464a7..0731ad1136 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndWsView.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndWsView.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndWsView) public: EndWsView(); - virtual ~EndWsView(); + ~EndWsView(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndWsViews.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndWsViews.h index d8b0135f4f..6537751c03 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndWsViews.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/EndWsViews.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EndWsViews) public: EndWsViews(); - virtual ~EndWsViews(); + ~EndWsViews(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/ExternCell.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/ExternCell.h index dee57ad8a6..d3effb7a65 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/ExternCell.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/ExternCell.h @@ -59,7 +59,7 @@ class ExternCell_T: public XLS::BiffRecord } return str; } - virtual ~ExternCell_T() + ~ExternCell_T() { } diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/ExternRowHdr.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/ExternRowHdr.h index 5bcda36f99..3b85cccb14 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/ExternRowHdr.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/ExternRowHdr.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(ExternRowHdr) public: ExternRowHdr(); - virtual ~ExternRowHdr(); + ~ExternRowHdr(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/ExternTableEnd.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/ExternTableEnd.h index bb5c2f0a45..e6928d6685 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/ExternTableEnd.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/ExternTableEnd.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(ExternTableEnd) public: ExternTableEnd(); - virtual ~ExternTableEnd(); + ~ExternTableEnd(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/ExternTableStart.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/ExternTableStart.h index 87603e51ce..13d46dae23 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/ExternTableStart.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/ExternTableStart.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(ExternTableStart) public: ExternTableStart(); - virtual ~ExternTableStart(); + ~ExternTableStart(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/ExternValueMeta.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/ExternValueMeta.h index 281bafb485..60d45c04a2 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/ExternValueMeta.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/ExternValueMeta.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(ExternValueMeta) public: ExternValueMeta(); - virtual ~ExternValueMeta(); + ~ExternValueMeta(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/FRTBegin.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/FRTBegin.h index d1f10f78b7..8727c127ca 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/FRTBegin.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/FRTBegin.h @@ -46,7 +46,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(FRTBegin) public: FRTBegin(); - virtual ~FRTBegin(); + ~FRTBegin(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/FRTEnd.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/FRTEnd.h index 020ad00ae4..b4f56c4e6c 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/FRTEnd.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/FRTEnd.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(FRTEnd) public: FRTEnd(); - virtual ~FRTEnd(); + ~FRTEnd(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/FieldListActiveItem.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/FieldListActiveItem.h index dfeaed45e2..64df2d046e 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/FieldListActiveItem.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/FieldListActiveItem.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(FieldListActiveItem) public: FieldListActiveItem(); - virtual ~FieldListActiveItem(); + ~FieldListActiveItem(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/FileSharingIso.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/FileSharingIso.h index 0191141dd9..cc989e55a4 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/FileSharingIso.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/FileSharingIso.h @@ -46,7 +46,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(FileSharingIso) public: FileSharingIso(); - virtual ~FileSharingIso(); + ~FileSharingIso(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/FileVersion.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/FileVersion.h index b4c740c8fe..3734e4c83c 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/FileVersion.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/FileVersion.h @@ -46,7 +46,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(FileVersion) public: FileVersion(); - virtual ~FileVersion(); + ~FileVersion(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/Fill.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/Fill.h index fd0943aa7d..a48ed238ba 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/Fill.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/Fill.h @@ -47,7 +47,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(Fill) public: Fill(); - virtual ~Fill(); + ~Fill(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/Filter.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/Filter.h index 3a14671182..562ccd803b 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/Filter.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/Filter.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(Filter) public: Filter(); - virtual ~Filter(); + ~Filter(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/Filter14.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/Filter14.h index 2be79e2b33..4b9780e66e 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/Filter14.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/Filter14.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(Filter14) public: Filter14(); - virtual ~Filter14(); + ~Filter14(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/Fmla.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/Fmla.h index 2fba5fe507..963bb05fad 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/Fmla.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/Fmla.h @@ -48,6 +48,7 @@ namespace XLSB { public: FmlaBase(bool flag) : formula(flag) {} + virtual ~FmlaBase(){} Cell cell; GrbitFmla grbitFlags; XLS::CellParsedFormula formula; @@ -79,7 +80,7 @@ namespace XLSB { } - virtual ~Fmla_T() + ~Fmla_T() { } diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/Fmt.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/Fmt.h index 2b081e6133..bd07b9d95a 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/Fmt.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/Fmt.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(Fmt) public: Fmt(); - virtual ~Fmt(); + ~Fmt(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/HLink.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/HLink.h index 02aecc0bab..9bf47686f1 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/HLink.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/HLink.h @@ -48,7 +48,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(HLink) public: HLink(); - virtual ~HLink(); + ~HLink(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/IconFilter.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/IconFilter.h index 3d14a247c2..2bb9215046 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/IconFilter.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/IconFilter.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(IconFilter) public: IconFilter(); - virtual ~IconFilter(); + ~IconFilter(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/IconFilter14.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/IconFilter14.h index 910b7f843c..9ad14b5af0 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/IconFilter14.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/IconFilter14.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(IconFilter14) public: IconFilter14(); - virtual ~IconFilter14(); + ~IconFilter14(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/IndexedColor.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/IndexedColor.h index fe36a415f3..207e2d9c1d 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/IndexedColor.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/IndexedColor.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(IndexedColor) public: IndexedColor(); - virtual ~IndexedColor(); + ~IndexedColor(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/ItemUniqueName.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/ItemUniqueName.h index ea785cbe8a..393868cc15 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/ItemUniqueName.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/ItemUniqueName.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(ItemUniqueName) public: ItemUniqueName(); - virtual ~ItemUniqueName(); + ~ItemUniqueName(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/KnownFonts.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/KnownFonts.h index 04e65872c8..55f5393e6b 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/KnownFonts.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/KnownFonts.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(KnownFonts) public: KnownFonts(); - virtual ~KnownFonts(); + ~KnownFonts(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/LegacyDrawing.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/LegacyDrawing.h index ffaafa948a..cfd3567a96 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/LegacyDrawing.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/LegacyDrawing.h @@ -46,7 +46,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(LegacyDrawing) public: LegacyDrawing(); - virtual ~LegacyDrawing(); + ~LegacyDrawing(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/LegacyDrawingHF.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/LegacyDrawingHF.h index ff68ab102a..a861b45606 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/LegacyDrawingHF.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/LegacyDrawingHF.h @@ -46,7 +46,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(LegacyDrawingHF) public: LegacyDrawingHF(); - virtual ~LegacyDrawingHF(); + ~LegacyDrawingHF(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/List14.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/List14.h index 8b360c447e..f056749ac8 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/List14.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/List14.h @@ -46,7 +46,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(List14) public: List14(); - virtual ~List14(); + ~List14(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/ListCCFmla.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/ListCCFmla.h index 2f8f868cf9..c222928d62 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/ListCCFmla.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/ListCCFmla.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(ListCCFmla) public: ListCCFmla(); - virtual ~ListCCFmla(); + ~ListCCFmla(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/ListPart.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/ListPart.h index 5e19d9f27b..f3bac87a4a 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/ListPart.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/ListPart.h @@ -46,7 +46,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(ListPart) public: ListPart(); - virtual ~ListPart(); + ~ListPart(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/ListTrFmla.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/ListTrFmla.h index 5ca8b1fe86..6815f33c59 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/ListTrFmla.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/ListTrFmla.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(ListTrFmla) public: ListTrFmla(); - virtual ~ListTrFmla(); + ~ListTrFmla(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/MRUColor.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/MRUColor.h index 9e0aade58d..bd2c1dd88d 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/MRUColor.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/MRUColor.h @@ -46,7 +46,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(MRUColor) public: MRUColor(); - virtual ~MRUColor(); + ~MRUColor(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/OleObject.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/OleObject.h index e116c85cff..9c090d3ee9 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/OleObject.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/OleObject.h @@ -46,7 +46,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(OleObject) public: OleObject(); - virtual ~OleObject(); + ~OleObject(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/OleSize.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/OleSize.h index 011d353708..99e69628a3 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/OleSize.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/OleSize.h @@ -46,7 +46,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(OleSize) public: OleSize(); - virtual ~OleSize(); + ~OleSize(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PCDCalcMem15.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PCDCalcMem15.h index 744e7a1b13..fe743b74b5 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PCDCalcMem15.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PCDCalcMem15.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PCDCalcMem15) public: PCDCalcMem15(); - virtual ~PCDCalcMem15(); + ~PCDCalcMem15(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PCDField14.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PCDField14.h index ff36ebb84f..d04b268589 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PCDField14.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PCDField14.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PCDField14) public: PCDField14(); - virtual ~PCDField14(); + ~PCDField14(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PCDH14.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PCDH14.h index 1021742964..8ba9890af2 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PCDH14.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PCDH14.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PCDH14) public: PCDH14(); - virtual ~PCDH14(); + ~PCDH14(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PCDH15.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PCDH15.h index c6c4cd0de5..b55031f54a 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PCDH15.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PCDH15.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PCDH15) public: PCDH15(); - virtual ~PCDH15(); + ~PCDH15(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PCDIABoolean.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PCDIABoolean.h index 510d77063f..40520b1267 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PCDIABoolean.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PCDIABoolean.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PCDIABoolean) public: PCDIABoolean(); - virtual ~PCDIABoolean(); + ~PCDIABoolean(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PCDIADatetime.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PCDIADatetime.h index 57ab0b1483..71116d3b5b 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PCDIADatetime.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PCDIADatetime.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PCDIADatetime) public: PCDIADatetime(); - virtual ~PCDIADatetime(); + ~PCDIADatetime(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PCDIAError.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PCDIAError.h index 2e29015413..ac4d9fa114 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PCDIAError.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PCDIAError.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PCDIAError) public: PCDIAError(); - virtual ~PCDIAError(); + ~PCDIAError(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PCDIAMissing.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PCDIAMissing.h index 9ebd28a7ca..c02987cd9d 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PCDIAMissing.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PCDIAMissing.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PCDIAMissing) public: PCDIAMissing(); - virtual ~PCDIAMissing(); + ~PCDIAMissing(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PCDIANumber.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PCDIANumber.h index adee669a2b..672fc72a0d 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PCDIANumber.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PCDIANumber.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PCDIANumber) public: PCDIANumber(); - virtual ~PCDIANumber(); + ~PCDIANumber(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PCDIAString.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PCDIAString.h index baa8248e2a..f614599a66 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PCDIAString.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PCDIAString.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PCDIAString) public: PCDIAString(); - virtual ~PCDIAString(); + ~PCDIAString(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PCDIBoolean.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PCDIBoolean.h index d6d639f13b..c9f43af8c7 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PCDIBoolean.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PCDIBoolean.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PCDIBoolean) public: PCDIBoolean(); - virtual ~PCDIBoolean(); + ~PCDIBoolean(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PCDIDatetime.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PCDIDatetime.h index 338c2618eb..7fdf84fd1b 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PCDIDatetime.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PCDIDatetime.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PCDIDatetime) public: PCDIDatetime(); - virtual ~PCDIDatetime(); + ~PCDIDatetime(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PCDIError.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PCDIError.h index 45fd47883d..22974c1c5f 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PCDIError.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PCDIError.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PCDIError) public: PCDIError(); - virtual ~PCDIError(); + ~PCDIError(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PCDIIndex.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PCDIIndex.h index 20908d3ee5..0ce722e263 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PCDIIndex.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PCDIIndex.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PCDIIndex) public: PCDIIndex(); - virtual ~PCDIIndex(); + ~PCDIIndex(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PCDIMissing.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PCDIMissing.h index c079e6f0e7..e4cad0367f 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PCDIMissing.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PCDIMissing.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PCDIMissing) public: PCDIMissing(); - virtual ~PCDIMissing(); + ~PCDIMissing(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PCDINumber.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PCDINumber.h index 44b088ff41..8f59cb8ea3 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PCDINumber.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PCDINumber.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PCDINumber) public: PCDINumber(); - virtual ~PCDINumber(); + ~PCDINumber(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PCDIString.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PCDIString.h index 06eda45549..0acff1bc03 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PCDIString.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PCDIString.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PCDIString) public: PCDIString(); - virtual ~PCDIString(); + ~PCDIString(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PCDSFCIEntry.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PCDSFCIEntry.h index 2b8ea01afd..2e640f2d5e 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PCDSFCIEntry.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PCDSFCIEntry.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PCDSFCIEntry) public: PCDSFCIEntry(); - virtual ~PCDSFCIEntry(); + ~PCDSFCIEntry(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PCRRecord.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PCRRecord.h index e7f0085d85..fba2ece22a 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PCRRecord.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PCRRecord.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PCRRecord) public: PCRRecord(); - virtual ~PCRRecord(); + ~PCRRecord(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PCRRecordDt.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PCRRecordDt.h index 8c0598ee3a..bb55b88f3b 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PCRRecordDt.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PCRRecordDt.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PCRRecordDt) public: PCRRecordDt(); - virtual ~PCRRecordDt(); + ~PCRRecordDt(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PivotCacheConnectionName.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PivotCacheConnectionName.h index 8244d8f7d5..cc8cab737e 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PivotCacheConnectionName.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PivotCacheConnectionName.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PivotCacheConnectionName) public: PivotCacheConnectionName(); - virtual ~PivotCacheConnectionName(); + ~PivotCacheConnectionName(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PivotCacheIdVersion.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PivotCacheIdVersion.h index 2a6d644ac8..276c6ae8a9 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PivotCacheIdVersion.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PivotCacheIdVersion.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PivotCacheIdVersion) public: PivotCacheIdVersion(); - virtual ~PivotCacheIdVersion(); + ~PivotCacheIdVersion(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PlaceholderName.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PlaceholderName.h index 2885f912c6..143df449cb 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PlaceholderName.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PlaceholderName.h @@ -46,7 +46,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PlaceholderName) public: PlaceholderName(); - virtual ~PlaceholderName(); + ~PlaceholderName(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PrintOptions.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PrintOptions.h index cf21e20e79..1dfc6c5436 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PrintOptions.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/PrintOptions.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PrintOptions) public: PrintOptions(); - virtual ~PrintOptions(); + ~PrintOptions(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/Qsi15.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/Qsi15.h index b0e94c3295..8f421650c0 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/Qsi15.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/Qsi15.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(Qsi15) public: Qsi15(); - virtual ~Qsi15(); + ~Qsi15(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/RangePr15.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/RangePr15.h index 81bd289765..1ba1f0f3c1 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/RangePr15.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/RangePr15.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(RangePr15) public: RangePr15(); - virtual ~RangePr15(); + ~RangePr15(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/RangeProtection.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/RangeProtection.h index 9e7e02ac35..5b3f2b8cf6 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/RangeProtection.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/RangeProtection.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(RangeProtection) public: RangeProtection(); - virtual ~RangeProtection(); + ~RangeProtection(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/RangeProtectionIso.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/RangeProtectionIso.h index 2fb1d54a4d..56d26a9891 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/RangeProtectionIso.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/RangeProtectionIso.h @@ -46,7 +46,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(RangeProtectionIso) public: RangeProtectionIso(); - virtual ~RangeProtectionIso(); + ~RangeProtectionIso(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/RichFilter.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/RichFilter.h index d759dbdcdc..fb48cf5baa 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/RichFilter.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/RichFilter.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(RichFilter) public: RichFilter(); - virtual ~RichFilter(); + ~RichFilter(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/RichFilterDateGroupItem.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/RichFilterDateGroupItem.h index 466a735a44..5aea454bee 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/RichFilterDateGroupItem.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/RichFilterDateGroupItem.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(RichFilterDateGroupItem) public: RichFilterDateGroupItem(); - virtual ~RichFilterDateGroupItem(); + ~RichFilterDateGroupItem(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/RwDescent.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/RwDescent.h index ca3781ce0d..1e3af93d70 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/RwDescent.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/RwDescent.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(RwDescent) public: RwDescent(); - virtual ~RwDescent(); + ~RwDescent(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SSTItem.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SSTItem.h index a486d155c2..27a1396ce1 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SSTItem.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SSTItem.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SSTItem) public: SSTItem(); - virtual ~SSTItem(); + ~SSTItem(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SXDI14.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SXDI14.h index b278ceeaf0..94f89eb7bf 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SXDI14.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SXDI14.h @@ -46,7 +46,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SXDI14) public: SXDI14(); - virtual ~SXDI14(); + ~SXDI14(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SXDI15.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SXDI15.h index 8f7e1fafd1..0b42749b33 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SXDI15.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SXDI15.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SXDI15) public: SXDI15(); - virtual ~SXDI15(); + ~SXDI15(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SXTDMPOrder.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SXTDMPOrder.h index 610b34c046..9d80fed156 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SXTDMPOrder.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SXTDMPOrder.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SXTDMPOrder) public: SXTDMPOrder(); - virtual ~SXTDMPOrder(); + ~SXTDMPOrder(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SXTH14.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SXTH14.h index bb8446cf41..7da90d1ac6 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SXTH14.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SXTH14.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SXTH14) public: SXTH14(); - virtual ~SXTH14(); + ~SXTH14(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SXTupleItems.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SXTupleItems.h index 03240e45e0..f068bad7de 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SXTupleItems.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SXTupleItems.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SXTupleItems) public: SXTupleItems(); - virtual ~SXTupleItems(); + ~SXTupleItems(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SXTupleSetHeaderItem.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SXTupleSetHeaderItem.h index e2cdd5c525..eee155cdf5 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SXTupleSetHeaderItem.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SXTupleSetHeaderItem.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SXTupleSetHeaderItem) public: SXTupleSetHeaderItem(); - virtual ~SXTupleSetHeaderItem(); + ~SXTupleSetHeaderItem(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SXTupleSetRowItem.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SXTupleSetRowItem.h index 65478ed786..7cd6c8a686 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SXTupleSetRowItem.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SXTupleSetRowItem.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SXTupleSetRowItem) public: SXTupleSetRowItem(); - virtual ~SXTupleSetRowItem(); + ~SXTupleSetRowItem(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SXVD14.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SXVD14.h index 6c732a8789..d14ef425b2 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SXVD14.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SXVD14.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SXVD14) public: SXVD14(); - virtual ~SXVD14(); + ~SXVD14(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SheetProtection.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SheetProtection.h index 40b33cc692..346150af31 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SheetProtection.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SheetProtection.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SheetProtection) public: SheetProtection(); - virtual ~SheetProtection(); + ~SheetProtection(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SheetProtectionIso.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SheetProtectionIso.h index 8533c50fd6..f7a80c2cf1 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SheetProtectionIso.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SheetProtectionIso.h @@ -46,7 +46,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SheetProtectionIso) public: SheetProtectionIso(); - virtual ~SheetProtectionIso(); + ~SheetProtectionIso(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SlicerCacheBookPivotTables.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SlicerCacheBookPivotTables.h index 51efc709cd..4bf27f9930 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SlicerCacheBookPivotTables.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SlicerCacheBookPivotTables.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SlicerCacheBookPivotTables) public: SlicerCacheBookPivotTables(); - virtual ~SlicerCacheBookPivotTables(); + ~SlicerCacheBookPivotTables(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SlicerCacheHideItemsWithNoData.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SlicerCacheHideItemsWithNoData.h index 53a8ced905..f222e7eaf0 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SlicerCacheHideItemsWithNoData.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SlicerCacheHideItemsWithNoData.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SlicerCacheHideItemsWithNoData) public: SlicerCacheHideItemsWithNoData(); - virtual ~SlicerCacheHideItemsWithNoData(); + ~SlicerCacheHideItemsWithNoData(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SlicerCacheNativeItem.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SlicerCacheNativeItem.h index 9dc0d09897..62da2a0f75 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SlicerCacheNativeItem.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SlicerCacheNativeItem.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SlicerCacheNativeItem) public: SlicerCacheNativeItem(); - virtual ~SlicerCacheNativeItem(); + ~SlicerCacheNativeItem(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SlicerCacheOlapItem.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SlicerCacheOlapItem.h index cb76b1bd9f..6efca03487 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SlicerCacheOlapItem.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SlicerCacheOlapItem.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SlicerCacheOlapItem) public: SlicerCacheOlapItem(); - virtual ~SlicerCacheOlapItem(); + ~SlicerCacheOlapItem(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SlicerCachePivotTables.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SlicerCachePivotTables.h index 00c8727d2f..70eaf7898b 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SlicerCachePivotTables.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SlicerCachePivotTables.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SlicerCachePivotTables) public: SlicerCachePivotTables(); - virtual ~SlicerCachePivotTables(); + ~SlicerCachePivotTables(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SlicerCacheSelection.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SlicerCacheSelection.h index 04048f2acc..4bf1389b6c 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SlicerCacheSelection.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SlicerCacheSelection.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SlicerCacheSelection) public: SlicerCacheSelection(); - virtual ~SlicerCacheSelection(); + ~SlicerCacheSelection(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SlicerStyleElement.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SlicerStyleElement.h index e17da1ed07..828926cd70 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SlicerStyleElement.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SlicerStyleElement.h @@ -46,7 +46,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SlicerStyleElement) public: SlicerStyleElement(); - virtual ~SlicerStyleElement(); + ~SlicerStyleElement(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/Sparkline.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/Sparkline.h index 3bfb22d867..30709846ae 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/Sparkline.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/Sparkline.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(Sparkline) public: Sparkline(); - virtual ~Sparkline(); + ~Sparkline(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/Style.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/Style.h index f30520bad4..2cc798b2b4 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/Style.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/Style.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(Style) public: Style(); - virtual ~Style(); + ~Style(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SupAddin.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SupAddin.h index 677d9eba44..d6854bce76 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SupAddin.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SupAddin.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SupAddin) public: SupAddin(); - virtual ~SupAddin(); + ~SupAddin(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SupBookSrc.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SupBookSrc.h index 15b45e2bc3..a765bcc204 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SupBookSrc.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SupBookSrc.h @@ -46,7 +46,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SupBookSrc) public: SupBookSrc(); - virtual ~SupBookSrc(); + ~SupBookSrc(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SupName.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SupName.h index d7340553bf..c7498ff9cf 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SupName.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SupName.h @@ -64,7 +64,7 @@ class SupName_T: public SupNameBase, public XLS::BiffRecord } return str; } - virtual ~SupName_T() + ~SupName_T() { } diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SupNameBits.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SupNameBits.h index 8176029dcf..d0e6c3b210 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SupNameBits.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SupNameBits.h @@ -47,7 +47,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SupNameBits) public: SupNameBits(ExternalReferenceType type); - virtual ~SupNameBits(); + ~SupNameBits(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SupNameEnd.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SupNameEnd.h index 63e99bc89e..19198eae47 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SupNameEnd.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SupNameEnd.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SupNameEnd) public: SupNameEnd(); - virtual ~SupNameEnd(); + ~SupNameEnd(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SupNameFmla.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SupNameFmla.h index 664038a42c..89ee6d1eec 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SupNameFmla.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SupNameFmla.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SupNameFmla) public: SupNameFmla(); - virtual ~SupNameFmla(); + ~SupNameFmla(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SupNameStart.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SupNameStart.h index 970ea8f4bf..10258c8c5f 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SupNameStart.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SupNameStart.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SupNameStart) public: SupNameStart(); - virtual ~SupNameStart(); + ~SupNameStart(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SupNameValueEnd.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SupNameValueEnd.h index 0c54478fc7..631c98010d 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SupNameValueEnd.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SupNameValueEnd.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SupNameValueEnd) public: SupNameValueEnd(); - virtual ~SupNameValueEnd(); + ~SupNameValueEnd(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SupNameValueStart.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SupNameValueStart.h index a3e574648c..5fdc7850b4 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SupNameValueStart.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SupNameValueStart.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SupNameValueStart) public: SupNameValueStart(); - virtual ~SupNameValueStart(); + ~SupNameValueStart(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SupSame.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SupSame.h index ca1ba0cc67..941b7a1833 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SupSame.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SupSame.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SupSame) public: SupSame(); - virtual ~SupSame(); + ~SupSame(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SupSelf.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SupSelf.h index feb5b9e136..a9c79bef50 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SupSelf.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SupSelf.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SupSelf) public: SupSelf(); - virtual ~SupSelf(); + ~SupSelf(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SupTabs.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SupTabs.h index b2bf84d67a..d6758a8dde 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SupTabs.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SupTabs.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SupTabs) public: SupTabs(); - virtual ~SupTabs(); + ~SupTabs(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SxFilter15.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SxFilter15.h index 976a518805..972db63922 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SxFilter15.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SxFilter15.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SxFilter15) public: SxFilter15(); - virtual ~SxFilter15(); + ~SxFilter15(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SxvcellBool.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SxvcellBool.h index 2e8441e59c..4ad45c81cc 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SxvcellBool.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SxvcellBool.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SxvcellBool) public: SxvcellBool(); - virtual ~SxvcellBool(); + ~SxvcellBool(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SxvcellDate.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SxvcellDate.h index 1eebcaa0d2..eda74ab390 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SxvcellDate.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SxvcellDate.h @@ -46,7 +46,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SxvcellDate) public: SxvcellDate(); - virtual ~SxvcellDate(); + ~SxvcellDate(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SxvcellErr.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SxvcellErr.h index 0fefe392e1..b092552eb9 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SxvcellErr.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SxvcellErr.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SxvcellErr) public: SxvcellErr(); - virtual ~SxvcellErr(); + ~SxvcellErr(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SxvcellNil.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SxvcellNil.h index a807d622dc..cd719b59be 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SxvcellNil.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SxvcellNil.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SxvcellNil) public: SxvcellNil(); - virtual ~SxvcellNil(); + ~SxvcellNil(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SxvcellNum.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SxvcellNum.h index 5c1dea800b..4b8b6b283d 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SxvcellNum.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SxvcellNum.h @@ -46,7 +46,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SxvcellNum) public: SxvcellNum(); - virtual ~SxvcellNum(); + ~SxvcellNum(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SxvcellStr.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SxvcellStr.h index d8dd7e25bb..3b379249ab 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SxvcellStr.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/SxvcellStr.h @@ -46,7 +46,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SxvcellStr) public: SxvcellStr(); - virtual ~SxvcellStr(); + ~SxvcellStr(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/TableSlicerCacheID.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/TableSlicerCacheID.h index e6d188979d..22e4302a2b 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/TableSlicerCacheID.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/TableSlicerCacheID.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(TableSlicerCacheID) public: TableSlicerCacheID(); - virtual ~TableSlicerCacheID(); + ~TableSlicerCacheID(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/TableSlicerCacheIDs.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/TableSlicerCacheIDs.h index b0b8e7587c..92d3b72cb2 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/TableSlicerCacheIDs.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/TableSlicerCacheIDs.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(TableSlicerCacheIDs) public: TableSlicerCacheIDs(); - virtual ~TableSlicerCacheIDs(); + ~TableSlicerCacheIDs(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/TableStyleClient.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/TableStyleClient.h index c2c483ffce..7b849d0087 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/TableStyleClient.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/TableStyleClient.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(TableStyleClient) public: TableStyleClient(); - virtual ~TableStyleClient(); + ~TableStyleClient(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/TextPr15.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/TextPr15.h index 315d3b8b55..10cbdb513b 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/TextPr15.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/TextPr15.h @@ -44,7 +44,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(TextPr15) public: TextPr15(); - virtual ~TextPr15(); + ~TextPr15(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/TimelineStyleElement.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/TimelineStyleElement.h index 52994d6eb2..95006280e3 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/TimelineStyleElement.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/TimelineStyleElement.h @@ -46,7 +46,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(TimelineStyleElement) public: TimelineStyleElement(); - virtual ~TimelineStyleElement(); + ~TimelineStyleElement(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/Top10Filter.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/Top10Filter.h index 1f7b8953ca..e7a1ffc835 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/Top10Filter.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/Top10Filter.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(Top10Filter) public: Top10Filter(); - virtual ~Top10Filter(); + ~Top10Filter(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/Top10RichFilter.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/Top10RichFilter.h index 52813520e0..b2be4f851d 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/Top10RichFilter.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/Top10RichFilter.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(Top10RichFilter) public: Top10RichFilter(); - virtual ~Top10RichFilter(); + ~Top10RichFilter(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/Uid.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/Uid.h index 7353c5d58e..e5ce70c59d 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/Uid.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/Uid.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(Uid) public: Uid(); - virtual ~Uid(); + ~Uid(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/ValueMeta.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/ValueMeta.h index 819e233e29..b235c1036d 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/ValueMeta.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/ValueMeta.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(ValueMeta) public: ValueMeta(); - virtual ~ValueMeta(); + ~ValueMeta(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/WbProp.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/WbProp.h index 7eb3a3b828..a8bf24a169 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/WbProp.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/WbProp.h @@ -46,7 +46,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(WbProp) public: WbProp(); - virtual ~WbProp(); + ~WbProp(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/WsDim.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/WsDim.h index a23373b02f..4a64c663d8 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/WsDim.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/WsDim.h @@ -46,7 +46,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(WsDim) public: WsDim(); - virtual ~WsDim(); + ~WsDim(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/WsProp.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/WsProp.h index 465fcd99a6..5141df5b92 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_records/WsProp.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_records/WsProp.h @@ -45,7 +45,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(WsProp) public: WsProp(); - virtual ~WsProp(); + ~WsProp(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/ACProductVersion.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/ACProductVersion.h index 3a96f79a74..ce3313124c 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/ACProductVersion.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/ACProductVersion.h @@ -44,7 +44,7 @@ namespace XLSB public: ACProductVersion(); ACProductVersion(XLS::CFRecord& record); - virtual ~ACProductVersion(); + ~ACProductVersion(); XLS::BiffStructurePtr clone(); static const XLS::ElementType type = XLS::typeBiffStructure; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/Blxf.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/Blxf.h index 3171c9345e..b2db0adac4 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/Blxf.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/Blxf.h @@ -45,7 +45,7 @@ namespace XLSB public: Blxf(); Blxf(XLS::CFRecord& record); - virtual ~Blxf(); + ~Blxf(); XLS::BiffStructurePtr clone(); static const XLS::ElementType type = XLS::typeBiffStructure; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/BookProtectionFlags.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/BookProtectionFlags.h index 4be6e4d78a..e9d9ebb26b 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/BookProtectionFlags.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/BookProtectionFlags.h @@ -44,7 +44,7 @@ namespace XLSB public: BookProtectionFlags(); BookProtectionFlags(XLS::CFRecord& record); - virtual ~BookProtectionFlags(); + ~BookProtectionFlags(); XLS::BiffStructurePtr clone(); static const XLS::ElementType type = XLS::typeBiffStructure; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/Cell.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/Cell.h index 628a6ccb8f..5c533342c3 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/Cell.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/Cell.h @@ -44,7 +44,7 @@ namespace XLSB public: Cell(); Cell(XLS::CFRecord& record); - virtual ~Cell(); + ~Cell(); XLS::BiffStructurePtr clone(); static const XLS::ElementType type = XLS::typeBiffStructure; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/CodeName.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/CodeName.h index 4713299aeb..c488c7612f 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/CodeName.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/CodeName.h @@ -45,7 +45,7 @@ namespace XLSB public: CodeName(); CodeName(XLS::CFRecord& record); - virtual ~CodeName(); + ~CodeName(); XLS::BiffStructurePtr clone(); static const XLS::ElementType type = XLS::typeBiffStructure; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/ColSpan.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/ColSpan.h index dcd7fc84da..2d4e9be925 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/ColSpan.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/ColSpan.h @@ -43,7 +43,7 @@ namespace XLSB public: ColSpan(); ColSpan(XLS::CFRecord& record); - virtual ~ColSpan(); + ~ColSpan(); XLS::BiffStructurePtr clone(); static const XLS::ElementType type = XLS::typeBiffStructure; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/DDEItemProperties.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/DDEItemProperties.h index 5aa97edad9..73a9353532 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/DDEItemProperties.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/DDEItemProperties.h @@ -45,7 +45,7 @@ namespace XLSB public: DDEItemProperties(); DDEItemProperties(XLS::CFRecord& record); - virtual ~DDEItemProperties(); + ~DDEItemProperties(); XLS::BiffStructurePtr clone(); static const XLS::ElementType type = XLS::typeBiffStructure; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/DValStrings.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/DValStrings.h index 475c2a03c6..d790afb906 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/DValStrings.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/DValStrings.h @@ -45,7 +45,7 @@ namespace XLSB public: DValStrings(); DValStrings(XLS::CFRecord& record); - virtual ~DValStrings(); + ~DValStrings(); XLS::BiffStructurePtr clone(); static const XLS::ElementType type = XLS::typeBiffStructure; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/ECTwFldInfoData.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/ECTwFldInfoData.h index e4dbfbbf59..60e0a7060e 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/ECTwFldInfoData.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/ECTwFldInfoData.h @@ -43,7 +43,7 @@ namespace XLSB public: ECTwFldInfoData(); ECTwFldInfoData(XLS::CFRecord& record); - virtual ~ECTwFldInfoData(); + ~ECTwFldInfoData(); XLS::BiffStructurePtr clone(); static const XLS::ElementType type = XLS::typeBiffStructure; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/ECTxtWizData.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/ECTxtWizData.h index f72ba2e218..d370055688 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/ECTxtWizData.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/ECTxtWizData.h @@ -43,7 +43,7 @@ namespace XLSB public: ECTxtWizData(); ECTxtWizData(XLS::CFRecord& record); - virtual ~ECTxtWizData(); + ~ECTxtWizData(); XLS::BiffStructurePtr clone(); static const XLS::ElementType type = XLS::typeBiffStructure; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/ExternalNameProperties.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/ExternalNameProperties.h index 9efc863cce..26c80acc11 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/ExternalNameProperties.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/ExternalNameProperties.h @@ -45,7 +45,7 @@ namespace XLSB public: ExternalNameProperties(); ExternalNameProperties(XLS::CFRecord& record); - virtual ~ExternalNameProperties(); + ~ExternalNameProperties(); XLS::BiffStructurePtr clone(); static const XLS::ElementType type = XLS::typeBiffStructure; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/FRTBlank.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/FRTBlank.h index 49af387863..57e146fa31 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/FRTBlank.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/FRTBlank.h @@ -44,7 +44,7 @@ namespace XLSB public: FRTBlank(); FRTBlank(XLS::CFRecord& record); - virtual ~FRTBlank(); + ~FRTBlank(); XLS::BiffStructurePtr clone(); static const XLS::ElementType type = XLS::typeBiffStructure; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/FRTFormula.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/FRTFormula.h index 7947d53979..70b3755624 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/FRTFormula.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/FRTFormula.h @@ -45,7 +45,7 @@ namespace XLSB public: FRTFormula(); FRTFormula(XLS::CFRecord& record); - virtual ~FRTFormula(); + ~FRTFormula(); XLS::BiffStructurePtr clone(); static const XLS::ElementType type = XLS::typeBiffStructure; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/FRTFormulas.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/FRTFormulas.h index 8557481031..0ec1504a1f 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/FRTFormulas.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/FRTFormulas.h @@ -44,7 +44,7 @@ namespace XLSB public: FRTFormulas(); FRTFormulas(XLS::CFRecord& record); - virtual ~FRTFormulas(); + ~FRTFormulas(); XLS::BiffStructurePtr clone(); static const XLS::ElementType type = XLS::typeBiffStructure; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/FRTHeader.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/FRTHeader.h index 5e9faba246..05859ccfbf 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/FRTHeader.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/FRTHeader.h @@ -47,7 +47,7 @@ namespace XLSB public: FRTHeader(); FRTHeader(XLS::CFRecord& record); - virtual ~FRTHeader(); + ~FRTHeader(); XLS::BiffStructurePtr clone(); static const XLS::ElementType type = XLS::typeBiffStructure; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/FRTProductVersion.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/FRTProductVersion.h index ac93459a17..221c11cf1b 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/FRTProductVersion.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/FRTProductVersion.h @@ -44,7 +44,7 @@ namespace XLSB public: FRTProductVersion(); FRTProductVersion(XLS::CFRecord& record); - virtual ~FRTProductVersion(); + ~FRTProductVersion(); XLS::BiffStructurePtr clone(); static const XLS::ElementType type = XLS::typeBiffStructure; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/FRTRef.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/FRTRef.h index 1c2c99fdd1..f5f142fe38 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/FRTRef.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/FRTRef.h @@ -45,7 +45,7 @@ namespace XLSB public: FRTRef(); FRTRef(XLS::CFRecord& record); - virtual ~FRTRef(); + ~FRTRef(); XLS::BiffStructurePtr clone(); static const XLS::ElementType type = XLS::typeBiffStructure; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/FRTRefs.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/FRTRefs.h index 4d8f626703..01db7346ea 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/FRTRefs.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/FRTRefs.h @@ -44,7 +44,7 @@ namespace XLSB public: FRTRefs(); FRTRefs(XLS::CFRecord& record); - virtual ~FRTRefs(); + ~FRTRefs(); XLS::BiffStructurePtr clone(); static const XLS::ElementType type = XLS::typeBiffStructure; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/FRTRelID.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/FRTRelID.h index 3ee68ff7c4..4437b2f20f 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/FRTRelID.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/FRTRelID.h @@ -44,7 +44,7 @@ namespace XLSB public: FRTRelID(); FRTRelID(XLS::CFRecord& record); - virtual ~FRTRelID(); + ~FRTRelID(); XLS::BiffStructurePtr clone(); static const XLS::ElementType type = XLS::typeBiffStructure; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/FRTSqref.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/FRTSqref.h index f6f7534a5d..059d612fb0 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/FRTSqref.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/FRTSqref.h @@ -45,7 +45,7 @@ namespace XLSB public: FRTSqref(); FRTSqref(XLS::CFRecord& record); - virtual ~FRTSqref(); + ~FRTSqref(); XLS::BiffStructurePtr clone(); static const XLS::ElementType type = XLS::typeBiffStructure; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/FRTSqrefs.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/FRTSqrefs.h index 10ab99c755..69a4e40dbb 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/FRTSqrefs.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/FRTSqrefs.h @@ -45,7 +45,7 @@ namespace XLSB public: FRTSqrefs(); FRTSqrefs(XLS::CFRecord& record); - virtual ~FRTSqrefs(); + ~FRTSqrefs(); XLS::BiffStructurePtr clone(); static const XLS::ElementType type = XLS::typeBiffStructure; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/GradientStop.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/GradientStop.h index 5d335a5746..ce024fe89f 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/GradientStop.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/GradientStop.h @@ -46,7 +46,7 @@ namespace XLSB public: GradientStop(); GradientStop(XLS::CFRecord& record); - virtual ~GradientStop(); + ~GradientStop(); XLS::BiffStructurePtr clone(); static const XLS::ElementType type = XLS::typeBiffStructure; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/GrbitFmla.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/GrbitFmla.h index f8837b0b9a..9a677eef28 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/GrbitFmla.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/GrbitFmla.h @@ -44,7 +44,7 @@ namespace XLSB public: GrbitFmla(); GrbitFmla(XLS::CFRecord& record); - virtual ~GrbitFmla(); + ~GrbitFmla(); XLS::BiffStructurePtr clone(); static const XLS::ElementType type = XLS::typeBiffStructure; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/LPByteBuf.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/LPByteBuf.h index cfb9c02830..26df40815e 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/LPByteBuf.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/LPByteBuf.h @@ -44,7 +44,7 @@ namespace XLSB public: LPByteBuf(); LPByteBuf(XLS::CFRecord& record); - virtual ~LPByteBuf(); + ~LPByteBuf(); XLS::BiffStructurePtr clone(); static const XLS::ElementType type = XLS::typeBiffStructure; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/OLEItemProperties.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/OLEItemProperties.h index 4beb760fbe..4babfe8508 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/OLEItemProperties.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/OLEItemProperties.h @@ -45,7 +45,7 @@ namespace XLSB public: OLEItemProperties(); OLEItemProperties(XLS::CFRecord& record); - virtual ~OLEItemProperties(); + ~OLEItemProperties(); XLS::BiffStructurePtr clone(); static const XLS::ElementType type = XLS::typeBiffStructure; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/PCDCalcMemCommon.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/PCDCalcMemCommon.h index 13bf865e2e..c6467803db 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/PCDCalcMemCommon.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/PCDCalcMemCommon.h @@ -44,7 +44,7 @@ namespace XLSB public: PCDCalcMemCommon(); PCDCalcMemCommon(XLS::CFRecord& record); - virtual ~PCDCalcMemCommon(); + ~PCDCalcMemCommon(); XLS::BiffStructurePtr clone(); static const XLS::ElementType type = XLS::typeBiffStructure; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/PCDIAddlInfo.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/PCDIAddlInfo.h index 4a1d7e9718..d4a36cc7dd 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/PCDIAddlInfo.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/PCDIAddlInfo.h @@ -44,7 +44,7 @@ namespace XLSB public: PCDIAddlInfo(); PCDIAddlInfo(XLS::CFRecord& record); - virtual ~PCDIAddlInfo(); + ~PCDIAddlInfo(); XLS::BiffStructurePtr clone(); static const XLS::ElementType type = XLS::typeBiffStructure; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/PCDIDateTime.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/PCDIDateTime.h index 8bd62b6c1c..54b398ac28 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/PCDIDateTime.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/PCDIDateTime.h @@ -43,7 +43,7 @@ namespace XLSB public: PCDIDateTime(); PCDIDateTime(XLS::CFRecord& record); - virtual ~PCDIDateTime(); + ~PCDIDateTime(); XLS::BiffStructurePtr clone(); static const XLS::ElementType type = XLS::typeBiffStructure; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/PCDISrvFmt.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/PCDISrvFmt.h index 0de672fcda..05a3594ca5 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/PCDISrvFmt.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/PCDISrvFmt.h @@ -44,7 +44,7 @@ namespace XLSB public: PCDISrvFmt(); PCDISrvFmt(XLS::CFRecord& record); - virtual ~PCDISrvFmt(); + ~PCDISrvFmt(); XLS::BiffStructurePtr clone(); static const XLS::ElementType type = XLS::typeBiffStructure; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/PRFilter.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/PRFilter.h index 4d500c9aa3..6b96ec5b8d 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/PRFilter.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/PRFilter.h @@ -44,7 +44,7 @@ namespace XLSB public: PRFilter(); PRFilter(XLS::CFRecord& record); - virtual ~PRFilter(); + ~PRFilter(); XLS::BiffStructurePtr clone(); static const XLS::ElementType type = XLS::typeBiffStructure; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/PRuleHeaderData.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/PRuleHeaderData.h index 7d9b4c2c53..009d58ce6e 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/PRuleHeaderData.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/PRuleHeaderData.h @@ -45,7 +45,7 @@ namespace XLSB public: PRuleHeaderData(); PRuleHeaderData(XLS::CFRecord& record); - virtual ~PRuleHeaderData(); + ~PRuleHeaderData(); XLS::BiffStructurePtr clone(); static const XLS::ElementType type = XLS::typeBiffStructure; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/RangeProtectionTitleSDRel.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/RangeProtectionTitleSDRel.h index 3cbf23746b..3e59813340 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/RangeProtectionTitleSDRel.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/RangeProtectionTitleSDRel.h @@ -45,7 +45,7 @@ namespace XLSB public: RangeProtectionTitleSDRel(); RangeProtectionTitleSDRel(XLS::CFRecord& record); - virtual ~RangeProtectionTitleSDRel(); + ~RangeProtectionTitleSDRel(); XLS::BiffStructurePtr clone(); static const XLS::ElementType type = XLS::typeBiffStructure; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/RelID.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/RelID.h index cdda142c51..b399de4cd9 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/RelID.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/RelID.h @@ -45,7 +45,7 @@ namespace XLSB public: RelID(); RelID(XLS::CFRecord& record); - virtual ~RelID(); + ~RelID(); XLS::BiffStructurePtr clone(); static const XLS::ElementType type = XLS::typeBiffStructure; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/RichStr.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/RichStr.h index 2754eed52b..7a09a1da6d 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/RichStr.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/RichStr.h @@ -43,7 +43,7 @@ namespace XLSB BASE_STRUCTURE_DEFINE_CLASS_NAME(RichStr) public: RichStr(); - virtual ~RichStr(); + ~RichStr(); XLS::BiffStructurePtr clone(); static const XLS::ElementType type = XLS::typeBiffStructure; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/SlicerCacheLevelData.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/SlicerCacheLevelData.h index 11f58536db..bfb6b25906 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/SlicerCacheLevelData.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/SlicerCacheLevelData.h @@ -44,7 +44,7 @@ namespace XLSB public: SlicerCacheLevelData(); SlicerCacheLevelData(XLS::CFRecord& record); - virtual ~SlicerCacheLevelData(); + ~SlicerCacheLevelData(); XLS::BiffStructurePtr clone(); static const XLS::ElementType type = XLS::typeBiffStructure; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/SlicerCacheNativeItemStruct.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/SlicerCacheNativeItemStruct.h index bcccf24ef5..6881a7e943 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/SlicerCacheNativeItemStruct.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/SlicerCacheNativeItemStruct.h @@ -44,7 +44,7 @@ namespace XLSB public: SlicerCacheNativeItemStruct(); SlicerCacheNativeItemStruct(XLS::CFRecord& record); - virtual ~SlicerCacheNativeItemStruct(); + ~SlicerCacheNativeItemStruct(); XLS::BiffStructurePtr clone(); static const XLS::ElementType type = XLS::typeBiffStructure; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/SlicerCachePivotTable.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/SlicerCachePivotTable.h index 3553bc3486..1055398e91 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/SlicerCachePivotTable.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/SlicerCachePivotTable.h @@ -44,7 +44,7 @@ namespace XLSB public: SlicerCachePivotTable(); SlicerCachePivotTable(XLS::CFRecord& record); - virtual ~SlicerCachePivotTable(); + ~SlicerCachePivotTable(); XLS::BiffStructurePtr clone(); static const XLS::ElementType type = XLS::typeBiffStructure; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/SrvFmtCV.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/SrvFmtCV.h index 6a55ee75a7..11b5cbcdf6 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/SrvFmtCV.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/SrvFmtCV.h @@ -43,7 +43,7 @@ namespace XLSB public: SrvFmtCV(); SrvFmtCV(XLS::CFRecord& record); - virtual ~SrvFmtCV(); + ~SrvFmtCV(); XLS::BiffStructurePtr clone(); static const XLS::ElementType type = XLS::typeBiffStructure; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/SxOs.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/SxOs.h index 20051decbf..42797d6951 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/SxOs.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/SxOs.h @@ -45,7 +45,7 @@ namespace XLSB public: SxOs(); SxOs(XLS::CFRecord& record); - virtual ~SxOs(); + ~SxOs(); XLS::BiffStructurePtr clone(); static const XLS::ElementType type = XLS::typeBiffStructure; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/SxSu.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/SxSu.h index 6ad325b4bd..8d8900017a 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/SxSu.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/SxSu.h @@ -45,7 +45,7 @@ namespace XLSB public: SxSu(); SxSu(XLS::CFRecord& record); - virtual ~SxSu(); + ~SxSu(); XLS::BiffStructurePtr clone(); static const XLS::ElementType type = XLS::typeBiffStructure; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/UncheckedSqRfX.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/UncheckedSqRfX.h index a7c960b02d..fdb8572343 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/UncheckedSqRfX.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_structures/UncheckedSqRfX.h @@ -44,7 +44,7 @@ namespace XLSB public: UncheckedSqRfX(); UncheckedSqRfX(XLS::CFRecord& record); - virtual ~UncheckedSqRfX(); + ~UncheckedSqRfX(); XLS::BiffStructurePtr clone(); static const XLS::ElementType type = XLS::typeBiffStructure; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ACABSPATH.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ACABSPATH.h index f3c3225636..cebac7a2e3 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ACABSPATH.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ACABSPATH.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(ACABSPATH) public: ACABSPATH(); - virtual ~ACABSPATH(); + ~ACABSPATH(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ACCELLTABLE.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ACCELLTABLE.h index 5a85761d34..bc9f73b170 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ACCELLTABLE.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ACCELLTABLE.h @@ -43,15 +43,15 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(ACCELLTABLE) public: ACCELLTABLE(); - virtual ~ACCELLTABLE(); + ~ACCELLTABLE(); XLS::BaseObjectPtr clone(); virtual const bool loadContent(XLS::BinProcessor& proc); - XLS::BaseObjectPtr m_BrtACBegin; - XLS::BaseObjectPtr m_BrtRwDescent; - XLS::BaseObjectPtr m_BrtACEnd; + XLS::BaseObjectPtr m_BrtACBegin; + XLS::BaseObjectPtr m_BrtRwDescent; + XLS::BaseObjectPtr m_BrtACEnd; }; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ACCUSTOMFILTER.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ACCUSTOMFILTER.h index 2bf29ae151..67e99a2202 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ACCUSTOMFILTER.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ACCUSTOMFILTER.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(ACCUSTOMFILTER) public: ACCUSTOMFILTER(); - virtual ~ACCUSTOMFILTER(); + ~ACCUSTOMFILTER(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ACDVALLIST.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ACDVALLIST.h index 8fcf63cd7a..deb810793c 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ACDVALLIST.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ACDVALLIST.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(ACDVALLIST) public: ACDVALLIST(); - virtual ~ACDVALLIST(); + ~ACDVALLIST(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ACFILTERCONTENT.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ACFILTERCONTENT.h index 2f06cd9a4e..58339aa5db 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ACFILTERCONTENT.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ACFILTERCONTENT.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(ACFILTERCONTENT) public: ACFILTERCONTENT(); - virtual ~ACFILTERCONTENT(); + ~ACFILTERCONTENT(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ACFILTERS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ACFILTERS.h index f808833ce0..45107054b2 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ACFILTERS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ACFILTERS.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(ACFILTERS) public: ACFILTERS(); - virtual ~ACFILTERS(); + ~ACFILTERS(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ACFMT.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ACFMT.h index 6bc318c57d..0745b2f133 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ACFMT.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ACFMT.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(ACFMT) public: ACFMT(); - virtual ~ACFMT(); + ~ACFMT(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ACFONTS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ACFONTS.h index 3a66e83c0e..75542ba05b 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ACFONTS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ACFONTS.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(ACFONTS) public: ACFONTS(); - virtual ~ACFONTS(); + ~ACFONTS(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ACICONFILTER.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ACICONFILTER.h index 87518e2f2d..88cec04fcf 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ACICONFILTER.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ACICONFILTER.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(ACICONFILTER) public: ACICONFILTER(); - virtual ~ACICONFILTER(); + ~ACICONFILTER(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ACSORTCONDS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ACSORTCONDS.h index 34f8dee367..b9a0b8390c 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ACSORTCONDS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ACSORTCONDS.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(ACSORTCONDS) public: ACSORTCONDS(); - virtual ~ACSORTCONDS(); + ~ACSORTCONDS(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ACTIVEXCONTROLS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ACTIVEXCONTROLS.h index 8aa9bed8b2..61b4585c23 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ACTIVEXCONTROLS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ACTIVEXCONTROLS.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(ACTIVEXCONTROLS) public: ACTIVEXCONTROLS(); - virtual ~ACTIVEXCONTROLS(); + ~ACTIVEXCONTROLS(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ACUID.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ACUID.h index 861a691fdb..4f37e50135 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ACUID.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ACUID.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(ACUID) public: ACUID(); - virtual ~ACUID(); + ~ACUID(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/AFILTER.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/AFILTER.h index 99c154719c..c4b3e491af 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/AFILTER.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/AFILTER.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(AFILTER) public: AFILTER(); - virtual ~AFILTER(); + ~AFILTER(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/AUTOFILTER.cpp b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/AUTOFILTER.cpp index fce291b0ba..0e4f1e4527 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/AUTOFILTER.cpp +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/AUTOFILTER.cpp @@ -61,7 +61,7 @@ namespace XLSB { if (proc.optional()) { - m_ACUID = elements_.back(); + //m_ACUID = elements_.back(); elements_.pop_back(); } @@ -90,7 +90,7 @@ namespace XLSB while(count > 0) { - m_arFRT.insert(m_arFRT.begin(), elements_.back()); + ////m_arFRT.insert(m_arFRT.begin(), elements_.back()); elements_.pop_back(); count--; } diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/AUTOFILTER.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/AUTOFILTER.h index 2a1ca1d29e..d4eb62f977 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/AUTOFILTER.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/AUTOFILTER.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(AUTOFILTER) public: AUTOFILTER(); - virtual ~AUTOFILTER(); + ~AUTOFILTER(); XLS::BaseObjectPtr clone(); @@ -49,11 +49,11 @@ namespace XLSB static const XLS::ElementType type = XLS::typeAUTOFILTER; - XLS::BaseObjectPtr m_ACUID; + //XLS::BaseObjectPtr m_ACUID; XLS::BaseObjectPtr m_BrtBeginAFilter; std::vector m_arFILTERCOLUMN; XLS::BaseObjectPtr m_SORTSTATE; - std::vector m_arFRT; + //std::vector m_arFRT; XLS::BaseObjectPtr m_BrtEndAFilter; }; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/AUTOSORTSCOPE.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/AUTOSORTSCOPE.h index ef8881ab81..3df886a259 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/AUTOSORTSCOPE.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/AUTOSORTSCOPE.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(AUTOSORTSCOPE) public: AUTOSORTSCOPE(); - virtual ~AUTOSORTSCOPE(); + ~AUTOSORTSCOPE(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/BOOKVIEWS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/BOOKVIEWS.h index e3b232f79b..b49db3e775 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/BOOKVIEWS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/BOOKVIEWS.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BOOKVIEWS) public: BOOKVIEWS(); - virtual ~BOOKVIEWS(); + ~BOOKVIEWS(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/BOOKVIEWS_bu.cpp b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/BOOKVIEWS_bu.cpp index 0ba561e03b..e98abc5839 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/BOOKVIEWS_bu.cpp +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/BOOKVIEWS_bu.cpp @@ -63,7 +63,7 @@ namespace XLSB { if (proc.optional()) { - m_ACUID = elements_.back(); + //m_ACUID = elements_.back(); elements_.pop_back(); } if(proc.optional()) @@ -77,7 +77,7 @@ namespace XLSB while(count > 0) { - m_arFRT.insert(m_arFRT.begin(), elements_.back()); + //m_arFRT.insert(m_arFRT.begin(), elements_.back()); elements_.pop_back(); count--; } @@ -87,7 +87,7 @@ namespace XLSB BaseObjectPtr m_ACUID; BaseObjectPtr m_BrtBookView; - std::vector m_arFRT; + //std::vector m_arFRT; }; BaseObjectPtr BOOKVIEWS::clone() diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/BORDERS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/BORDERS.h index 560e75e650..059bb9bd7f 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/BORDERS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/BORDERS.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BORDERS) public: BORDERS(); - virtual ~BORDERS(); + ~BORDERS(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/BUNDLESHS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/BUNDLESHS.h index b856fac67b..34ce85d09c 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/BUNDLESHS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/BUNDLESHS.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(BUNDLESHS) public: BUNDLESHS(); - virtual ~BUNDLESHS(); + ~BUNDLESHS(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CELL.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CELL.h index 1088db6562..7b06319871 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CELL.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CELL.h @@ -43,20 +43,20 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(CELL) public: CELL(_INT32 row, std::vector& shared_formulas_locations_ref); - virtual ~CELL(); + ~CELL(); XLS::BaseObjectPtr clone(); virtual const bool loadContent(XLS::BinProcessor& proc); - XLS::BaseObjectPtr m_TABLECELL; - XLS::BaseObjectPtr m_DATACELL; - XLS::BaseObjectPtr m_FMLACELL; - XLS::BaseObjectPtr m_SHRFMLACELL; + //XLS::BaseObjectPtr m_TABLECELL; + //XLS::BaseObjectPtr m_DATACELL; + //XLS::BaseObjectPtr m_FMLACELL; + //XLS::BaseObjectPtr m_SHRFMLACELL; XLS::BaseObjectPtr m_CELLMETA; - std::vector m_arFRT; + XLS::BaseObjectPtr m_source; + //std::vector m_arFRT; _INT32 m_Row; - //_INT32 m_Col; std::vector& shared_formulas_locations_ref_; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CELLMETA.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CELLMETA.h index d37b8c97fd..0b821ce886 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CELLMETA.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CELLMETA.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(CELLMETA) public: CELLMETA(); - virtual ~CELLMETA(); + ~CELLMETA(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CELLSTYLEXFS.cpp b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CELLSTYLEXFS.cpp index 4eff6dcb55..01bc57f58d 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CELLSTYLEXFS.cpp +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CELLSTYLEXFS.cpp @@ -72,7 +72,7 @@ namespace XLSB while (proc.optional()) { - m_arFRT.push_back(elements_.back()); + //m_arFRT.push_back(elements_.back()); elements_.pop_back(); } } diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CELLSTYLEXFS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CELLSTYLEXFS.h index 8836deafc0..6823709084 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CELLSTYLEXFS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CELLSTYLEXFS.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(CELLSTYLEXFS) public: CELLSTYLEXFS(); - virtual ~CELLSTYLEXFS(); + ~CELLSTYLEXFS(); XLS::BaseObjectPtr clone(); @@ -51,7 +51,7 @@ namespace XLSB XLS::BaseObjectPtr m_BrtBeginCellStyleXFs; std::vector m_arBrtXF; - std::vector m_arFRT; + //std::vector m_arFRT; XLS::BaseObjectPtr m_BrtEndCellStyleXFs; }; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CELLTABLE.cpp b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CELLTABLE.cpp index eb83731a2e..88935600d5 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CELLTABLE.cpp +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CELLTABLE.cpp @@ -51,66 +51,6 @@ namespace XLSB { } - class Parenthesis_CELLTABLE: public XLS::CompositeObject - { - BASE_OBJECT_DEFINE_CLASS_NAME(Parenthesis_CELLTABLE) - public: - - Parenthesis_CELLTABLE(std::vector& shared_formulas_locations_ref) : - shared_formulas_locations_ref_(shared_formulas_locations_ref) - { - } - BaseObjectPtr clone() - { - return BaseObjectPtr(new Parenthesis_CELLTABLE(*this)); - } - - const bool loadContent(XLS::BinProcessor& proc) - { - if (proc.optional()) - { - m_ACCELLTABLE = elements_.back(); - elements_.pop_back(); - } - if(proc.optional()) - { - m_BrtRowHdr = elements_.back(); - elements_.pop_back(); - } - else return false; - - - CELL cell(static_cast(m_BrtRowHdr.get())->rw + 1, shared_formulas_locations_ref_); - - int countCELL = proc.repeated(cell, 0, 16384); - - while(countCELL > 0) - { - m_arCELL.insert(m_arCELL.begin(), elements_.back()); - elements_.pop_back(); - countCELL--; - } - - int countFRT = proc.repeated(0, 0); - - while(countFRT > 0) - { - m_arFRT.insert(m_arFRT.begin(), elements_.back()); - elements_.pop_back(); - countFRT--; - } - - return true; - }; - - BaseObjectPtr m_ACCELLTABLE; - BaseObjectPtr m_BrtRowHdr; - std::vector m_arCELL; - std::vector m_arFRT; - - std::vector& shared_formulas_locations_ref_; - }; - BaseObjectPtr CELLTABLE::clone() { return BaseObjectPtr(new CELLTABLE(*this)); @@ -125,24 +65,83 @@ namespace XLSB elements_.pop_back(); } Parenthesis_CELLTABLE cell_group(shared_formulas_locations_ref_); - int countParenthesis_CELLTABLE = proc.repeated(cell_group, 0, 1048576); - while(!elements_.empty()) + while(proc.optional(cell_group)) { - _data data; - data.m_ACCELLTABLE = std::move(static_cast(elements_.back().get())->m_ACCELLTABLE); - data.m_BrtRowHdr = std::move(static_cast(elements_.back().get())->m_BrtRowHdr); - data.m_arCELL = std::move(static_cast(elements_.back().get())->m_arCELL); - m_arParenthesis_CELLTABLE.insert(m_arParenthesis_CELLTABLE.begin(), data); + m_arParenthesis_CELLTABLE.insert(m_arParenthesis_CELLTABLE.begin(), elements_.back()); elements_.pop_back(); } + /*int countParenthesis_CELLTABLE = proc.repeated(cell_group, 0, 1048576); + while(countParenthesis_CELLTABLE > 0) + { + m_arParenthesis_CELLTABLE.insert(m_arParenthesis_CELLTABLE.begin(), elements_.back()); + elements_.pop_back(); + countParenthesis_CELLTABLE--; + }*/ + if (proc.optional()) { m_BrtEndSheetData = elements_.back(); elements_.pop_back(); } - return m_BrtBeginSheetData && countParenthesis_CELLTABLE > 0 && m_BrtEndSheetData; + return m_BrtBeginSheetData && m_BrtEndSheetData; + } + + Parenthesis_CELLTABLE::Parenthesis_CELLTABLE(std::vector& shared_formulas_locations_ref) : + shared_formulas_locations_ref_(shared_formulas_locations_ref) + { + } + Parenthesis_CELLTABLE::~Parenthesis_CELLTABLE() + { + } + BaseObjectPtr Parenthesis_CELLTABLE::clone() + { + return BaseObjectPtr(new Parenthesis_CELLTABLE(*this)); + } + + const bool Parenthesis_CELLTABLE::loadContent(XLS::BinProcessor& proc) + { + if (proc.optional()) + { + m_ACCELLTABLE = elements_.back(); + elements_.pop_back(); + } + if(proc.optional()) + { + m_BrtRowHdr = elements_.back(); + elements_.pop_back(); + } + else return false; + + + CELL cell(static_cast(m_BrtRowHdr.get())->rw + 1, shared_formulas_locations_ref_); + + while(proc.optional(cell)) + { + m_arCELL.insert(m_arCELL.begin(), elements_.back()); + elements_.pop_back(); + } + + /*int countCELL = proc.repeated(cell, 0, 16384); + + while(countCELL > 0) + { + m_arCELL.insert(m_arCELL.begin(), elements_.back()); + elements_.pop_back(); + countCELL--; + }*/ + + int countFRT = proc.repeated(0, 0); + + while(countFRT > 0) + { + // m_arFRT.insert(m_arFRT.begin(), elements_.back()); + elements_.pop_back(); + countFRT--; + } + + return true; } } // namespace XLSB diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CELLTABLE.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CELLTABLE.h index df7ad0646f..29956e51c0 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CELLTABLE.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CELLTABLE.h @@ -43,27 +43,39 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(CELLTABLE) public: CELLTABLE(); - virtual ~CELLTABLE(); + ~CELLTABLE(); XLS::BaseObjectPtr clone(); virtual const bool loadContent(XLS::BinProcessor& proc); - struct _data - { - XLS::BaseObjectPtr m_ACCELLTABLE; - XLS::BaseObjectPtr m_BrtRowHdr; - std::vector m_arCELL; - }; - - XLS::BaseObjectPtr m_BrtBeginSheetData; - std::vector<_data> m_arParenthesis_CELLTABLE; + std::vector m_arParenthesis_CELLTABLE; XLS::BaseObjectPtr m_BrtEndSheetData; std::vector shared_formulas_locations_ref_; }; + class Parenthesis_CELLTABLE: public XLS::CompositeObject + { + BASE_OBJECT_DEFINE_CLASS_NAME(Parenthesis_CELLTABLE) + public: + + Parenthesis_CELLTABLE(std::vector& shared_formulas_locations_ref); + ~Parenthesis_CELLTABLE(); + + XLS::BaseObjectPtr clone(); + + virtual const bool loadContent(XLS::BinProcessor& proc); + + XLS::BaseObjectPtr m_ACCELLTABLE; + XLS::BaseObjectPtr m_BrtRowHdr; + std::vector m_arCELL; + //std::vector m_arFRT; + + std::vector& shared_formulas_locations_ref_; + }; + } // namespace XLSB diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CELLXFS.cpp b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CELLXFS.cpp index 7ae427794a..b0effd0c48 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CELLXFS.cpp +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CELLXFS.cpp @@ -72,7 +72,7 @@ namespace XLSB while (proc.optional()) { - m_arFRT.push_back(elements_.back()); + //m_arFRT.push_back(elements_.back()); elements_.pop_back(); } } diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CELLXFS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CELLXFS.h index 15f4fcd605..c9efa78941 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CELLXFS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CELLXFS.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(CELLXFS) public: CELLXFS(); - virtual ~CELLXFS(); + ~CELLXFS(); XLS::BaseObjectPtr clone(); @@ -51,7 +51,7 @@ namespace XLSB XLS::BaseObjectPtr m_BrtBeginCellXFs; std::vector m_arBrtXF; - std::vector m_arFRT; + //std::vector m_arFRT; XLS::BaseObjectPtr m_BrtEndCellXFs; }; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CELL_12bu.cpp b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CELL_12bu.cpp index e3f90825bc..03cb786c57 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CELL_12bu.cpp +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CELL_12bu.cpp @@ -75,12 +75,16 @@ namespace XLSB FMLACELL fmlacell(m_Row, shared_formulas_locations_ref_); if(proc.optional(fmlacell)) { - m_FMLACELL = elements_.back(); + //m_FMLACELL = elements_.back(); + m_source = elements_.back(); elements_.pop_back(); - SHRFMLACELL shrfmlacell(m_Row, static_cast(m_FMLACELL.get())->m_Col, shared_formulas_locations_ref_); + SHRFMLACELL shrfmlacell(m_Row, static_cast(m_source.get())->m_Col, shared_formulas_locations_ref_); if(proc.optional(shrfmlacell)) { - m_SHRFMLACELL = elements_.back(); + //m_SHRFMLACELL = elements_.back(); + auto sharedfmla = static_cast(elements_.back().get()); + sharedfmla->_fmlacell = m_source; + m_source = elements_.back(); elements_.pop_back(); } } @@ -88,14 +92,16 @@ namespace XLSB } else { - m_DATACELL = elements_.back(); + //m_DATACELL = elements_.back(); + m_source = elements_.back(); elements_.pop_back(); } } else { m_CELLMETA = static_cast(elements_.back().get())->m_CELLMETA; - m_TABLECELL = elements_.back(); + //m_TABLECELL = elements_.back(); + m_source = elements_.back(); elements_.pop_back(); } @@ -103,12 +109,12 @@ namespace XLSB while(count > 0) { - m_arFRT.insert(m_arFRT.begin(), elements_.back()); + //m_arFRT.insert(m_arFRT.begin(), elements_.back()); elements_.pop_back(); count--; } - return m_DATACELL || m_FMLACELL || m_SHRFMLACELL || m_TABLECELL; + return m_source != nullptr; } } // namespace XLSB diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CFRULE.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CFRULE.h index c3051cd9d2..7aedd09729 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CFRULE.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CFRULE.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(CFRULE) public: CFRULE(const XLS::CellRef& cell_base_ref); - virtual ~CFRULE(); + ~CFRULE(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CFRULE14.cpp b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CFRULE14.cpp index 694c6cb16c..c04b097d32 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CFRULE14.cpp +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CFRULE14.cpp @@ -89,7 +89,7 @@ namespace XLSB while(count > 0) { - m_arFRT.insert(m_arFRT.begin(), elements_.back()); + //m_arFRT.insert(m_arFRT.begin(), elements_.back()); elements_.pop_back(); count--; } diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CFRULE14.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CFRULE14.h index 7d53d90f16..db02e6c65d 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CFRULE14.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CFRULE14.h @@ -42,7 +42,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(CFRULE) public: CFRULE14(); - virtual ~CFRULE14(); + ~CFRULE14(); XLS::BaseObjectPtr clone(); @@ -52,7 +52,7 @@ namespace XLSB XLS::BaseObjectPtr m_BrtBeginCFRule14; XLS::BaseObjectPtr m_source; - std::vector m_arFRT; + //std::vector m_arFRT; XLS::BaseObjectPtr m_BrtEndCFRule14; }; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/COLBRK.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/COLBRK.h index 47d7766ce8..a862821578 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/COLBRK.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/COLBRK.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(COLBRK) public: COLBRK(); - virtual ~COLBRK(); + ~COLBRK(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/COLINFOS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/COLINFOS.h index 5c70577fdd..833590b269 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/COLINFOS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/COLINFOS.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(COLINFOS) public: COLINFOS(); - virtual ~COLINFOS(); + ~COLINFOS(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/COLORPALETTE.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/COLORPALETTE.h index dae3609221..301d54a8f1 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/COLORPALETTE.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/COLORPALETTE.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(COLORPALETTE) public: COLORPALETTE(); - virtual ~COLORPALETTE(); + ~COLORPALETTE(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/COLORSCALE.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/COLORSCALE.h index 83cb385d11..51efb44115 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/COLORSCALE.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/COLORSCALE.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(COLORSCALE) public: COLORSCALE(); - virtual ~COLORSCALE(); + ~COLORSCALE(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/COLORSCALE14.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/COLORSCALE14.h index 40dda1f7ef..4d17fda22d 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/COLORSCALE14.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/COLORSCALE14.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(COLORSCALE14) public: COLORSCALE14(); - virtual ~COLORSCALE14(); + ~COLORSCALE14(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/COMMENT.cpp b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/COMMENT.cpp index aa5734bb84..de0dd72096 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/COMMENT.cpp +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/COMMENT.cpp @@ -59,7 +59,7 @@ namespace XLSB { if (proc.optional()) { - m_ACUID = elements_.back(); + //m_ACUID = elements_.back(); elements_.pop_back(); } if (proc.optional()) diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/COMMENT.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/COMMENT.h index d133c41809..7f5732327d 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/COMMENT.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/COMMENT.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(COMMENT) public: COMMENT(); - virtual ~COMMENT(); + ~COMMENT(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/COMMENTAUTHORS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/COMMENTAUTHORS.h index c7b03bc96f..8811677acc 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/COMMENTAUTHORS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/COMMENTAUTHORS.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(COMMENTAUTHORS) public: COMMENTAUTHORS(); - virtual ~COMMENTAUTHORS(); + ~COMMENTAUTHORS(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/COMMENTLIST.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/COMMENTLIST.h index 861408882a..fd11f19d86 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/COMMENTLIST.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/COMMENTLIST.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(COMMENTLIST) public: COMMENTLIST(); - virtual ~COMMENTLIST(); + ~COMMENTLIST(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/COMMENTS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/COMMENTS.h index 14a37eedb2..43c2be2194 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/COMMENTS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/COMMENTS.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(COMMENTS) public: COMMENTS(); - virtual ~COMMENTS(); + ~COMMENTS(); XLS::BaseObjectPtr clone(); @@ -52,7 +52,7 @@ namespace XLSB XLS::BaseObjectPtr m_BrtBeginComments; XLS::BaseObjectPtr m_COMMENTAUTHORS; XLS::BaseObjectPtr m_COMMENTLIST; - std::vector m_arFRT; + //std::vector m_arFRT; XLS::BaseObjectPtr m_BrtEndComments; }; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/COMMENTS_bu.cpp b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/COMMENTS_bu.cpp index 9f01b2af5b..a991bbeade 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/COMMENTS_bu.cpp +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/COMMENTS_bu.cpp @@ -77,7 +77,7 @@ namespace XLSB while(count > 0) { - m_arFRT.insert(m_arFRT.begin(), elements_.back()); + //m_arFRT.insert(m_arFRT.begin(), elements_.back()); elements_.pop_back(); count--; } diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CONDITIONALFORMATTING.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CONDITIONALFORMATTING.h index daaf2a3ac1..a0c1ddccdd 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CONDITIONALFORMATTING.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CONDITIONALFORMATTING.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(CONDITIONALFORMATTING) public: CONDITIONALFORMATTING(); - virtual ~CONDITIONALFORMATTING(); + ~CONDITIONALFORMATTING(); XLS::BaseObjectPtr clone(); @@ -53,7 +53,7 @@ namespace XLSB XLS::BaseObjectPtr m_BrtBeginConditionalFormatting; std::vector m_arCFRULE; - std::vector m_arFRT; + //std::vector m_arFRT; XLS::BaseObjectPtr m_BrtEndConditionalFormatting; }; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CONDITIONALFORMATTING14.cpp b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CONDITIONALFORMATTING14.cpp index df9fd5dc28..35f63ed6a8 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CONDITIONALFORMATTING14.cpp +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CONDITIONALFORMATTING14.cpp @@ -75,7 +75,7 @@ namespace XLSB while(count > 0) { - m_arFRT.insert(m_arFRT.begin(), elements_.back()); + //m_arFRT.insert(m_arFRT.begin(), elements_.back()); elements_.pop_back(); count--; } diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CONDITIONALFORMATTING14.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CONDITIONALFORMATTING14.h index 0e492e8785..9447d2918f 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CONDITIONALFORMATTING14.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CONDITIONALFORMATTING14.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(CONDITIONALFORMATTING14) public: CONDITIONALFORMATTING14(); - virtual ~CONDITIONALFORMATTING14(); + ~CONDITIONALFORMATTING14(); XLS::BaseObjectPtr clone(); @@ -53,7 +53,7 @@ namespace XLSB XLS::BaseObjectPtr m_BrtBeginConditionalFormatting14; std::vector m_arCFRULE14; - std::vector m_arFRT; + //std::vector m_arFRT; XLS::BaseObjectPtr m_BrtEndConditionalFormatting14; }; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CONDITIONALFORMATTINGS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CONDITIONALFORMATTINGS.h index d078b0e2a5..ad6655568b 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CONDITIONALFORMATTINGS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CONDITIONALFORMATTINGS.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(CONDITIONALFORMATTINGS) public: CONDITIONALFORMATTINGS(); - virtual ~CONDITIONALFORMATTINGS(); + ~CONDITIONALFORMATTINGS(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CONDITIONALFORMATTING_bu.cpp b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CONDITIONALFORMATTING_bu.cpp index 50b484d3b3..c8efee9271 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CONDITIONALFORMATTING_bu.cpp +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CONDITIONALFORMATTING_bu.cpp @@ -77,7 +77,7 @@ namespace XLSB while(count > 0) { - m_arFRT.insert(m_arFRT.begin(), elements_.back()); + //m_arFRT.insert(m_arFRT.begin(), elements_.back()); elements_.pop_back(); count--; } diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CSVIEW.cpp b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CSVIEW.cpp index be8ca51690..2ea363890a 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CSVIEW.cpp +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CSVIEW.cpp @@ -59,7 +59,7 @@ namespace XLSB { if (proc.optional()) { - m_ACUID = elements_.back(); + //m_ACUID = elements_.back(); elements_.pop_back(); } @@ -73,7 +73,7 @@ namespace XLSB while(count > 0) { - m_arFRT.insert(m_arFRT.begin(), elements_.back()); + //m_arFRT.insert(m_arFRT.begin(), elements_.back()); elements_.pop_back(); count--; } diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CSVIEW.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CSVIEW.h index be37739871..0e8f3bba26 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CSVIEW.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CSVIEW.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(CSVIEW) public: CSVIEW(); - virtual ~CSVIEW(); + ~CSVIEW(); XLS::BaseObjectPtr clone(); @@ -49,9 +49,9 @@ namespace XLSB static const XLS::ElementType type = XLS::typeCSVIEW; - XLS::BaseObjectPtr m_ACUID; + //XLS::BaseObjectPtr m_ACUID; XLS::BaseObjectPtr m_BrtBeginCsView; - std::vector m_arFRT; + //std::vector m_arFRT; XLS::BaseObjectPtr m_BrtEndCsView; }; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CSVIEWS.cpp b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CSVIEWS.cpp index bbf3d2eef2..ce2b048a86 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CSVIEWS.cpp +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CSVIEWS.cpp @@ -76,7 +76,7 @@ namespace XLSB while(count > 0) { - m_arFRT.insert(m_arFRT.begin(), elements_.back()); + //m_arFRT.insert(m_arFRT.begin(), elements_.back()); elements_.pop_back(); count--; } diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CSVIEWS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CSVIEWS.h index 4f55616d60..12dd4c1bb6 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CSVIEWS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CSVIEWS.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(CSVIEWS) public: CSVIEWS(); - virtual ~CSVIEWS(); + ~CSVIEWS(); XLS::BaseObjectPtr clone(); @@ -51,7 +51,7 @@ namespace XLSB XLS::BaseObjectPtr m_BrtBeginCsViews; std::vector m_arCSVIEW; - std::vector m_arFRT; + //std::vector m_arFRT; XLS::BaseObjectPtr m_BrtEndCsViews; }; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CUSTOMFILTERS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CUSTOMFILTERS.h index a9dd1ae2c2..1905b9f8c2 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CUSTOMFILTERS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CUSTOMFILTERS.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(CUSTOMFILTERS) public: CUSTOMFILTERS(); - virtual ~CUSTOMFILTERS(); + ~CUSTOMFILTERS(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CUSTOMRICHFILTERS.cpp b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CUSTOMRICHFILTERS.cpp index 7085d81f18..19f1c65337 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CUSTOMRICHFILTERS.cpp +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CUSTOMRICHFILTERS.cpp @@ -73,7 +73,7 @@ namespace XLSB while(count > 0) { - m_arFRT.insert(m_arFRT.begin(), elements_.back()); + //m_arFRT.insert(m_arFRT.begin(), elements_.back()); elements_.pop_back(); count--; } diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CUSTOMRICHFILTERS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CUSTOMRICHFILTERS.h index c3a32d5dd0..5c23caa2f1 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CUSTOMRICHFILTERS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/CUSTOMRICHFILTERS.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(CUSTOMRICHFILTERS) public: CUSTOMRICHFILTERS(); - virtual ~CUSTOMRICHFILTERS(); + ~CUSTOMRICHFILTERS(); XLS::BaseObjectPtr clone(); @@ -51,7 +51,7 @@ namespace XLSB XLS::BaseObjectPtr m_BrtBeginCustomRichFilters; std::vector m_arBrtCustomRichFilter; - std::vector m_arFRT; + //std::vector m_arFRT; XLS::BaseObjectPtr m_BrtEndCustomRichFilters; }; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DATABAR.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DATABAR.h index 0c054465d0..dd669ec106 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DATABAR.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DATABAR.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(DATABAR) public: DATABAR(); - virtual ~DATABAR(); + ~DATABAR(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DATABAR14.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DATABAR14.h index 98edab67e9..258b4aff9a 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DATABAR14.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DATABAR14.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(DATABAR14) public: DATABAR14(); - virtual ~DATABAR14(); + ~DATABAR14(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DATACELL.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DATACELL.h index d944cfc64e..3bc8461221 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DATACELL.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DATACELL.h @@ -41,14 +41,16 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(DATACELL) public: DATACELL(); - virtual ~DATACELL(); + ~DATACELL(); XLS::BaseObjectPtr clone(); virtual const bool loadContent(XLS::BinProcessor& proc); + static const XLS::ElementType type = XLS::typeDATACELL; + XLS::BaseObjectPtr m_source; - _INT32 m_Col; + _INT32 m_Col; }; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DATAFEEDPR15.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DATAFEEDPR15.h index eae9ca3a1c..efd9dbd246 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DATAFEEDPR15.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DATAFEEDPR15.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(DATAFEEDPR15) public: DATAFEEDPR15(); - virtual ~DATAFEEDPR15(); + ~DATAFEEDPR15(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DBTABLES15.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DBTABLES15.h index 6ca0e5eebc..f985099f00 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DBTABLES15.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DBTABLES15.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(DBTABLES15) public: DBTABLES15(); - virtual ~DBTABLES15(); + ~DBTABLES15(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DCON.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DCON.h index fcdf0fa3ad..d8b1146c23 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DCON.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DCON.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(DCON) public: DCON(); - virtual ~DCON(); + ~DCON(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DDEOLEITEM.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DDEOLEITEM.h index fd765a1fda..d853e4c773 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DDEOLEITEM.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DDEOLEITEM.h @@ -42,7 +42,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(DDEOLEITEM) public: DDEOLEITEM(ExternalReferenceType type); - virtual ~DDEOLEITEM(); + ~DDEOLEITEM(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DDEOLEITEMVALUE.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DDEOLEITEMVALUE.h index d11d37d041..84d1f7c3df 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DDEOLEITEMVALUE.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DDEOLEITEMVALUE.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(TABLECELL) public: DDEOLEITEMVALUE(); - virtual ~DDEOLEITEMVALUE(); + ~DDEOLEITEMVALUE(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DDEOLEITEMVALUES.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DDEOLEITEMVALUES.h index d410253cd2..f216909918 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DDEOLEITEMVALUES.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DDEOLEITEMVALUES.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(DDEOLEITEMVALUES) public: DDEOLEITEMVALUES(); - virtual ~DDEOLEITEMVALUES(); + ~DDEOLEITEMVALUES(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DDEOLELINK.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DDEOLELINK.h index ce62815dbb..a8b4a056bf 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DDEOLELINK.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DDEOLELINK.h @@ -42,7 +42,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(DDEOLELINK) public: DDEOLELINK(ExternalReferenceType type); - virtual ~DDEOLELINK(); + ~DDEOLELINK(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DELETEDNAME.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DELETEDNAME.h index 39ea9e70dc..635b242525 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DELETEDNAME.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DELETEDNAME.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(DELETEDNAME) public: DELETEDNAME(); - virtual ~DELETEDNAME(); + ~DELETEDNAME(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DELETEDNAMES.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DELETEDNAMES.h index f52d72992c..4a46d0edf0 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DELETEDNAMES.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DELETEDNAMES.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(DELETEDNAMES) public: DELETEDNAMES(); - virtual ~DELETEDNAMES(); + ~DELETEDNAMES(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DIM.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DIM.h index 017241e0f3..f9f49b4ae0 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DIM.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DIM.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(DIM) public: DIM(); - virtual ~DIM(); + ~DIM(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DIMS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DIMS.h index d8bba508c1..d15407ced1 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DIMS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DIMS.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(DIMS) public: DIMS(); - virtual ~DIMS(); + ~DIMS(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DREFS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DREFS.h index a96a8d7e8a..cbe9b0ee44 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DREFS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DREFS.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(DREFS) public: DREFS(); - virtual ~DREFS(); + ~DREFS(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DVALS.cpp b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DVALS.cpp index 6c5f1dc641..7353821e6a 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DVALS.cpp +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DVALS.cpp @@ -63,7 +63,7 @@ namespace XLSB { if (proc.optional()) { - //m_ACUID = elements_.back(); + ////m_ACUID = elements_.back(); elements_.pop_back(); } if (proc.optional()) diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DVALS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DVALS.h index 1d50b2de68..2a3d2988fe 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DVALS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DVALS.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(DVALS) public: DVALS(); - virtual ~DVALS(); + ~DVALS(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DVALS14.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DVALS14.h index 1c8c468cbb..daea345043 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DVALS14.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DVALS14.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(DVALS14) public: DVALS14(); - virtual ~DVALS14(); + ~DVALS14(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DXF.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DXF.h index a2ca5f1426..f30fde3e85 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DXF.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DXF.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(uDXF) public: uDXF(); - virtual ~uDXF(); + ~uDXF(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DXF14S.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DXF14S.h index 64d8a0cab0..162270453b 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DXF14S.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DXF14S.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(DXF14S) public: DXF14S(); - virtual ~DXF14S(); + ~DXF14S(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DXFS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DXFS.h index 1e3508c68f..81345d89ec 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DXFS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DXFS.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(DXFS) public: DXFS(); - virtual ~DXFS(); + ~DXFS(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DXFS15.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DXFS15.h index d450759b36..5f5df210c6 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DXFS15.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/DXFS15.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(DXFS15) public: DXFS15(); - virtual ~DXFS15(); + ~DXFS15(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ECDBPROPS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ECDBPROPS.h index 861efa6d41..3bd8e3420d 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ECDBPROPS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ECDBPROPS.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(ECDBPROPS) public: ECDBPROPS(); - virtual ~ECDBPROPS(); + ~ECDBPROPS(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ECOLAPPROPS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ECOLAPPROPS.h index 03ef20275f..7e5da510a5 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ECOLAPPROPS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ECOLAPPROPS.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(ECOLAPPROPS) public: ECOLAPPROPS(); - virtual ~ECOLAPPROPS(); + ~ECOLAPPROPS(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ECPARAM.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ECPARAM.h index d82b3698c7..9422eb8d33 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ECPARAM.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ECPARAM.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(ECPARAM) public: ECPARAM(); - virtual ~ECPARAM(); + ~ECPARAM(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ECPARAMS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ECPARAMS.h index 2a8603df60..a484cd7885 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ECPARAMS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ECPARAMS.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(ECPARAMS) public: ECPARAMS(); - virtual ~ECPARAMS(); + ~ECPARAMS(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ECTWFLDINFOLST.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ECTWFLDINFOLST.h index 0f64ee6f82..f153cba735 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ECTWFLDINFOLST.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ECTWFLDINFOLST.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(ECTWFLDINFOLST) public: ECTWFLDINFOLST(); - virtual ~ECTWFLDINFOLST(); + ~ECTWFLDINFOLST(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ECTWFLDINFOLST15.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ECTWFLDINFOLST15.h index 9b7f68c655..0748e5a5bd 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ECTWFLDINFOLST15.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ECTWFLDINFOLST15.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(ECTWFLDINFOLST15) public: ECTWFLDINFOLST15(); - virtual ~ECTWFLDINFOLST15(); + ~ECTWFLDINFOLST15(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ECTXTWIZ.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ECTXTWIZ.h index ab3533c2f1..1135dd4ff2 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ECTXTWIZ.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ECTXTWIZ.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(ECTXTWIZ) public: ECTXTWIZ(); - virtual ~ECTXTWIZ(); + ~ECTXTWIZ(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ECTXTWIZ15.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ECTXTWIZ15.h index 14810bb394..d7ea9d0094 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ECTXTWIZ15.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ECTXTWIZ15.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(ECTXTWIZ15) public: ECTXTWIZ15(); - virtual ~ECTXTWIZ15(); + ~ECTXTWIZ15(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ECWEBPROPS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ECWEBPROPS.h index bd8409342b..e752fda84d 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ECWEBPROPS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ECWEBPROPS.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(ECWEBPROPS) public: ECWEBPROPS(); - virtual ~ECWEBPROPS(); + ~ECWEBPROPS(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ECWPTABLES.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ECWPTABLES.h index 0c5d1248ca..b117937e79 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ECWPTABLES.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ECWPTABLES.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(ECWPTABLES) public: ECWPTABLES(); - virtual ~ECWPTABLES(); + ~ECWPTABLES(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/EXTCONN14.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/EXTCONN14.h index 5b3b242c9a..87f7664201 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/EXTCONN14.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/EXTCONN14.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EXTCONN14) public: EXTCONN14(); - virtual ~EXTCONN14(); + ~EXTCONN14(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/EXTCONN15.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/EXTCONN15.h index 762750b344..d6979ec294 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/EXTCONN15.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/EXTCONN15.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EXTCONN15) public: EXTCONN15(); - virtual ~EXTCONN15(); + ~EXTCONN15(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/EXTCONNECTION.cpp b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/EXTCONNECTION.cpp index 2fc2322786..fb67bcd331 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/EXTCONNECTION.cpp +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/EXTCONNECTION.cpp @@ -66,7 +66,7 @@ namespace XLSB { if (proc.optional()) { - m_ACUID = elements_.back(); + //m_ACUID = elements_.back(); elements_.pop_back(); } @@ -78,7 +78,7 @@ namespace XLSB if (proc.optional()) { - m_ACUID = elements_.back(); + //m_ACUID = elements_.back(); elements_.pop_back(); } diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/EXTCONNECTION.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/EXTCONNECTION.h index 475c5baff7..4c18436aa6 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/EXTCONNECTION.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/EXTCONNECTION.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EXTCONNECTION) public: EXTCONNECTION(); - virtual ~EXTCONNECTION(); + ~EXTCONNECTION(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/EXTCONNECTIONS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/EXTCONNECTIONS.h index 68cb22ff36..36cebfad06 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/EXTCONNECTIONS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/EXTCONNECTIONS.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EXTCONNECTIONS) public: EXTCONNECTIONS(); - virtual ~EXTCONNECTIONS(); + ~EXTCONNECTIONS(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/EXTERNALBOOK.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/EXTERNALBOOK.h index 532ceda666..dd14d5976d 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/EXTERNALBOOK.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/EXTERNALBOOK.h @@ -42,7 +42,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EXTERNALBOOK) public: EXTERNALBOOK(ExternalReferenceType type); - virtual ~EXTERNALBOOK(); + ~EXTERNALBOOK(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/EXTERNALLINK.cpp b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/EXTERNALLINK.cpp index e62154f324..c1b88e7211 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/EXTERNALLINK.cpp +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/EXTERNALLINK.cpp @@ -84,7 +84,7 @@ namespace XLSB while(countFRT > 0) { - m_arFRT.insert(m_arFRT.begin(), elements_.back()); + //m_arFRT.insert(m_arFRT.begin(), elements_.back()); elements_.pop_back(); countFRT--; } diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/EXTERNALLINK.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/EXTERNALLINK.h index ad3a9cbfda..2d5239fce9 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/EXTERNALLINK.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/EXTERNALLINK.h @@ -42,7 +42,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EXTERNALLINK) public: EXTERNALLINK(); - virtual ~EXTERNALLINK(); + ~EXTERNALLINK(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/EXTERNALS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/EXTERNALS.h index db3ab0d033..fd4bde9623 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/EXTERNALS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/EXTERNALS.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EXTERNALS) public: EXTERNALS(); - virtual ~EXTERNALS(); + ~EXTERNALS(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/EXTERNNAME.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/EXTERNNAME.h index 5b81004cdc..615c172c92 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/EXTERNNAME.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/EXTERNNAME.h @@ -42,7 +42,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EXTERNNAME) public: EXTERNNAME(ExternalReferenceType type); - virtual ~EXTERNNAME(); + ~EXTERNNAME(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/EXTERNROW.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/EXTERNROW.h index 03eff18e92..77b19cc56b 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/EXTERNROW.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/EXTERNROW.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EXTERNROW) public: EXTERNROW(); - virtual ~EXTERNROW(); + ~EXTERNROW(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/EXTERNTABLE.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/EXTERNTABLE.h index 951393ca7b..915150a08d 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/EXTERNTABLE.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/EXTERNTABLE.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EXTERNTABLE) public: EXTERNTABLE(); - virtual ~EXTERNTABLE(); + ~EXTERNTABLE(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/EXTERNVALUE.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/EXTERNVALUE.h index d39ca99823..0f34bb28ef 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/EXTERNVALUE.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/EXTERNVALUE.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(EXTERNVALUE) public: EXTERNVALUE(_INT32 row); - virtual ~EXTERNVALUE(); + ~EXTERNVALUE(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/EXTERNVALUEDATA.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/EXTERNVALUEDATA.h index 73a3cf0057..5659909197 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/EXTERNVALUEDATA.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/EXTERNVALUEDATA.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(TABLECELL) public: EXTERNVALUEDATA(_INT32 row); - virtual ~EXTERNVALUEDATA(); + ~EXTERNVALUEDATA(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FILLS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FILLS.h index 259c7d483e..33a7fe09e2 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FILLS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FILLS.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(FILLS) public: FILLS(); - virtual ~FILLS(); + ~FILLS(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FILTERCOLUMN.cpp b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FILTERCOLUMN.cpp index 1d9e549959..aac049ccea 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FILTERCOLUMN.cpp +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FILTERCOLUMN.cpp @@ -95,7 +95,7 @@ namespace XLSB while(count > 0) { - m_arFRT.insert(m_arFRT.begin(), elements_.back()); + //m_arFRT.insert(m_arFRT.begin(), elements_.back()); elements_.pop_back(); count--; } diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FILTERCOLUMN.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FILTERCOLUMN.h index c82d3e5561..cc91b6955b 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FILTERCOLUMN.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FILTERCOLUMN.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(FILTERCOLUMN) public: FILTERCOLUMN(); - virtual ~FILTERCOLUMN(); + ~FILTERCOLUMN(); XLS::BaseObjectPtr clone(); @@ -49,7 +49,7 @@ namespace XLSB XLS::BaseObjectPtr m_BrtBeginFilterColumn; XLS::BaseObjectPtr m_source; - std::vector m_arFRT; + //std::vector m_arFRT; XLS::BaseObjectPtr m_BrtEndFilterColumn; }; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FILTERS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FILTERS.h index 69762188a9..a25309c0d2 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FILTERS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FILTERS.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(FILTERS) public: FILTERS(); - virtual ~FILTERS(); + ~FILTERS(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FMLACELL.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FMLACELL.h index 487654d915..e6fa4d6818 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FMLACELL.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FMLACELL.h @@ -41,12 +41,14 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(FMLACELL) public: FMLACELL(_INT32 row, std::vector& shared_formulas_locations_ref); - virtual ~FMLACELL(); + ~FMLACELL(); XLS::BaseObjectPtr clone(); virtual const bool loadContent(XLS::BinProcessor& proc); + static const XLS::ElementType type = XLS::typeFMLACELL; + XLS::BaseObjectPtr m_source; _INT32 m_Col; _INT32 m_Row; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FMTS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FMTS.h index 12c2a89468..4e54b310be 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FMTS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FMTS.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(FMTS) public: FMTS(); - virtual ~FMTS(); + ~FMTS(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FNGROUP.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FNGROUP.h index 01f8e3f05a..50a4c4c579 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FNGROUP.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FNGROUP.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(FNGROUP) public: FNGROUP(); - virtual ~FNGROUP(); + ~FNGROUP(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FONTS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FONTS.h index 39e8fd28f7..ec482bfe03 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FONTS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FONTS.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(FONTS) public: FONTS(); - virtual ~FONTS(); + ~FONTS(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRT.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRT.h index 7801456a69..eb115f919e 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRT.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRT.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(FRT) public: FRT(); - virtual ~FRT(); + ~FRT(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTCFRULE.cpp b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTCFRULE.cpp index 45a8dfa40a..804a6310c9 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTCFRULE.cpp +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTCFRULE.cpp @@ -79,7 +79,7 @@ namespace XLSB while(count > 0) { - m_arFRT.insert(m_arFRT.begin(), elements_.back()); + //m_arFRT.insert(m_arFRT.begin(), elements_.back()); elements_.pop_back(); count--; } diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTCFRULE.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTCFRULE.h index d42ac4f97f..e5a03ca647 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTCFRULE.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTCFRULE.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(FRTCFRULE) public: FRTCFRULE(); - virtual ~FRTCFRULE(); + ~FRTCFRULE(); XLS::BaseObjectPtr clone(); @@ -52,7 +52,7 @@ namespace XLSB XLS::BaseObjectPtr m_BrtFRTBegin; XLS::BaseObjectPtr m_BrtCFRuleExt; XLS::BaseObjectPtr m_BrtFRTEnd; - std::vector m_arFRT; + //std::vector m_arFRT; }; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTDXF.cpp b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTDXF.cpp index 91bc184a6a..807af04fb5 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTDXF.cpp +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTDXF.cpp @@ -64,7 +64,7 @@ namespace XLSB auto count = proc.repeated(0, 0); while(count > 0) { - m_arFRT.insert(m_arFRT.begin(), elements_.back()); + //m_arFRT.insert(m_arFRT.begin(), elements_.back()); elements_.pop_back(); count--; } diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTDXF.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTDXF.h index a3f04b86a1..6512d350d5 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTDXF.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTDXF.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(FRTDXF) public: FRTDXF(); - virtual ~FRTDXF(); + ~FRTDXF(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTEXTCONNECTIONS.cpp b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTEXTCONNECTIONS.cpp index 9edcaf64b8..27ac65d5e3 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTEXTCONNECTIONS.cpp +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTEXTCONNECTIONS.cpp @@ -86,7 +86,7 @@ namespace XLSB while(count > 0) { - m_arFRT.insert(m_arFRT.begin(), elements_.back()); + //m_arFRT.insert(m_arFRT.begin(), elements_.back()); elements_.pop_back(); count--; } diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTEXTCONNECTIONS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTEXTCONNECTIONS.h index c9f57cd958..5586637020 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTEXTCONNECTIONS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTEXTCONNECTIONS.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(FRTEXTCONNECTIONS) public: FRTEXTCONNECTIONS(); - virtual ~FRTEXTCONNECTIONS(); + ~FRTEXTCONNECTIONS(); XLS::BaseObjectPtr clone(); @@ -53,7 +53,7 @@ namespace XLSB XLS::BaseObjectPtr m_EXTCONN14; XLS::BaseObjectPtr m_EXTCONN15; XLS::BaseObjectPtr m_BrtFRTEnd; - std::vector m_arFRT; + //std::vector m_arFRT; }; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTPCDCALCMEM.cpp b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTPCDCALCMEM.cpp index ebcde61f6f..6b9f9210f3 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTPCDCALCMEM.cpp +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTPCDCALCMEM.cpp @@ -79,7 +79,7 @@ namespace XLSB while(count > 0) { - m_arFRT.insert(m_arFRT.begin(), elements_.back()); + //m_arFRT.insert(m_arFRT.begin(), elements_.back()); elements_.pop_back(); count--; } diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTPCDCALCMEM.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTPCDCALCMEM.h index 07c0ae20e3..6dc1d2e654 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTPCDCALCMEM.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTPCDCALCMEM.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(FRTPCDCALCMEM) public: FRTPCDCALCMEM(); - virtual ~FRTPCDCALCMEM(); + ~FRTPCDCALCMEM(); XLS::BaseObjectPtr clone(); @@ -50,7 +50,7 @@ namespace XLSB XLS::BaseObjectPtr m_BrtFRTBegin; XLS::BaseObjectPtr m_PCDCALCMEM14; XLS::BaseObjectPtr m_BrtFRTEnd; - std::vector m_arFRT; + //std::vector m_arFRT; }; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTPCDFIELD.cpp b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTPCDFIELD.cpp index a72e684c86..9163fad8da 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTPCDFIELD.cpp +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTPCDFIELD.cpp @@ -71,7 +71,7 @@ namespace XLSB auto count = proc.repeated(0, 0); while(count > 0) { - m_arFRT.insert(m_arFRT.begin(), elements_.back()); + //m_arFRT.insert(m_arFRT.begin(), elements_.back()); elements_.pop_back(); count--; } diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTPCDFIELD.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTPCDFIELD.h index 8bfc8a5334..40c6d0a0a8 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTPCDFIELD.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTPCDFIELD.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(FRTPCDFIELD) public: FRTPCDFIELD(); - virtual ~FRTPCDFIELD(); + ~FRTPCDFIELD(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTPCDFIELD14.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTPCDFIELD14.h index e22efcc855..0299556aad 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTPCDFIELD14.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTPCDFIELD14.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(FRTPCDFIELD14) public: FRTPCDFIELD14(); - virtual ~FRTPCDFIELD14(); + ~FRTPCDFIELD14(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTPCDFIELD15.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTPCDFIELD15.h index 1e26d2aad8..4754005d5e 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTPCDFIELD15.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTPCDFIELD15.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(FRTPCDFIELD15) public: FRTPCDFIELD15(); - virtual ~FRTPCDFIELD15(); + ~FRTPCDFIELD15(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTPCDHIERARCHY.cpp b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTPCDHIERARCHY.cpp index 9eaf71319b..fefc2be130 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTPCDHIERARCHY.cpp +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTPCDHIERARCHY.cpp @@ -79,7 +79,7 @@ namespace XLSB while(count > 0) { - m_arFRT.insert(m_arFRT.begin(), elements_.back()); + //m_arFRT.insert(m_arFRT.begin(), elements_.back()); elements_.pop_back(); count--; } diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTPCDHIERARCHY.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTPCDHIERARCHY.h index 73f431242b..e3fc61b90a 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTPCDHIERARCHY.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTPCDHIERARCHY.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(FRTPCDHIERARCHY) public: FRTPCDHIERARCHY(); - virtual ~FRTPCDHIERARCHY(); + ~FRTPCDHIERARCHY(); XLS::BaseObjectPtr clone(); @@ -50,7 +50,7 @@ namespace XLSB XLS::BaseObjectPtr m_BrtFRTBegin; XLS::BaseObjectPtr m_BrtPCDH14; XLS::BaseObjectPtr m_BrtFRTEnd; - std::vector m_arFRT; + //std::vector m_arFRT; }; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTPIVOTCACHEDEF.cpp b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTPIVOTCACHEDEF.cpp index def163d130..919d76c3e4 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTPIVOTCACHEDEF.cpp +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTPIVOTCACHEDEF.cpp @@ -86,7 +86,7 @@ namespace XLSB while(count > 0) { - m_arFRT.insert(m_arFRT.begin(), elements_.back()); + //m_arFRT.insert(m_arFRT.begin(), elements_.back()); elements_.pop_back(); count--; } diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTPIVOTCACHEDEF.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTPIVOTCACHEDEF.h index 987cdea1c2..57bca7bbeb 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTPIVOTCACHEDEF.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTPIVOTCACHEDEF.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(FRTPIVOTCACHEDEF) public: FRTPIVOTCACHEDEF(); - virtual ~FRTPIVOTCACHEDEF(); + ~FRTPIVOTCACHEDEF(); XLS::BaseObjectPtr clone(); @@ -53,7 +53,7 @@ namespace XLSB XLS::BaseObjectPtr m_PCD14; XLS::BaseObjectPtr m_BrtFRTEnd; XLS::BaseObjectPtr m_PCD15; - std::vector m_arFRT; + //std::vector m_arFRT; }; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTQSI.cpp b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTQSI.cpp index b3e6858e40..57f683bc82 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTQSI.cpp +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTQSI.cpp @@ -64,7 +64,7 @@ namespace XLSB auto count = proc.repeated(0, 0); while(count > 0) { - m_arFRT.insert(m_arFRT.begin(), elements_.back()); + //m_arFRT.insert(m_arFRT.begin(), elements_.back()); elements_.pop_back(); count--; } diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTQSI.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTQSI.h index c0c8f2aac3..54a2795c22 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTQSI.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTQSI.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(FRTQSI) public: FRTQSI(); - virtual ~FRTQSI(); + ~FRTQSI(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTSLICERCACHE.cpp b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTSLICERCACHE.cpp index 4912a217d7..8a6c402d3d 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTSLICERCACHE.cpp +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTSLICERCACHE.cpp @@ -79,7 +79,7 @@ namespace XLSB while(count > 0) { - m_arFRT.insert(m_arFRT.begin(), elements_.back()); + //m_arFRT.insert(m_arFRT.begin(), elements_.back()); elements_.pop_back(); count--; } diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTSLICERCACHE.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTSLICERCACHE.h index ef3f022cd8..4f911c1658 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTSLICERCACHE.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTSLICERCACHE.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(FRTSLICERCACHE) public: FRTSLICERCACHE(); - virtual ~FRTSLICERCACHE(); + ~FRTSLICERCACHE(); XLS::BaseObjectPtr clone(); @@ -52,7 +52,7 @@ namespace XLSB XLS::BaseObjectPtr m_SLICERCACHEBOOKPIVOTTABLES; XLS::BaseObjectPtr m_TABLESLICERCACHE; XLS::BaseObjectPtr m_SLICERCACHECROSSFILTEREXT; - std::vector m_arFRT; + //std::vector m_arFRT; }; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTSTYLESHEET.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTSTYLESHEET.h index 8926b465a1..9a8180e9f9 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTSTYLESHEET.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTSTYLESHEET.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(FRTSTYLESHEET) public: FRTSTYLESHEET(); - virtual ~FRTSTYLESHEET(); + ~FRTSTYLESHEET(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTSXDI.cpp b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTSXDI.cpp index 3bf4c60ec4..c18f578207 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTSXDI.cpp +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTSXDI.cpp @@ -98,7 +98,7 @@ namespace XLSB while(count > 0) { - m_arFRT.insert(m_arFRT.begin(), elements_.back()); + //m_arFRT.insert(m_arFRT.begin(), elements_.back()); elements_.pop_back(); count--; } diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTSXDI.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTSXDI.h index 710a90c23e..f3ff31c35b 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTSXDI.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTSXDI.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(FRTSXDI) public: FRTSXDI(); - virtual ~FRTSXDI(); + ~FRTSXDI(); XLS::BaseObjectPtr clone(); @@ -51,7 +51,7 @@ namespace XLSB XLS::BaseObjectPtr m_BrtSXDI14; XLS::BaseObjectPtr m_BrtSXDI15; XLS::BaseObjectPtr m_BrtFRTEnd; - std::vector m_arFRT; + //std::vector m_arFRT; }; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTSXFILTER.cpp b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTSXFILTER.cpp index e488c5518a..38a6734c9c 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTSXFILTER.cpp +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTSXFILTER.cpp @@ -79,7 +79,7 @@ namespace XLSB while(count > 0) { - m_arFRT.insert(m_arFRT.begin(), elements_.back()); + //m_arFRT.insert(m_arFRT.begin(), elements_.back()); elements_.pop_back(); count--; } diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTSXFILTER.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTSXFILTER.h index d5321cf169..eb4dbab269 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTSXFILTER.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTSXFILTER.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(FRTSXFILTER) public: FRTSXFILTER(); - virtual ~FRTSXFILTER(); + ~FRTSXFILTER(); XLS::BaseObjectPtr clone(); @@ -50,7 +50,7 @@ namespace XLSB XLS::BaseObjectPtr m_BrtFRTBegin; XLS::BaseObjectPtr m_BrtSxFilter15; XLS::BaseObjectPtr m_BrtFRTEnd; - std::vector m_arFRT; + //std::vector m_arFRT; }; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTSXTH.cpp b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTSXTH.cpp index c8c553156b..8c5bb0500b 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTSXTH.cpp +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTSXTH.cpp @@ -79,7 +79,7 @@ namespace XLSB while(count > 0) { - m_arFRT.insert(m_arFRT.begin(), elements_.back()); + //m_arFRT.insert(m_arFRT.begin(), elements_.back()); elements_.pop_back(); count--; } diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTSXTH.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTSXTH.h index 3e77e2038b..febee562cc 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTSXTH.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTSXTH.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(FRTSXTH) public: FRTSXTH(); - virtual ~FRTSXTH(); + ~FRTSXTH(); XLS::BaseObjectPtr clone(); @@ -50,7 +50,7 @@ namespace XLSB XLS::BaseObjectPtr m_BrtFRTBegin; XLS::BaseObjectPtr m_BrtSXTH14; XLS::BaseObjectPtr m_BrtFRTEnd; - std::vector m_arFRT; + //std::vector m_arFRT; }; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTSXVD.cpp b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTSXVD.cpp index c7aced9539..d0eda8f2e5 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTSXVD.cpp +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTSXVD.cpp @@ -79,7 +79,7 @@ namespace XLSB while(count > 0) { - m_arFRT.insert(m_arFRT.begin(), elements_.back()); + //m_arFRT.insert(m_arFRT.begin(), elements_.back()); elements_.pop_back(); count--; } diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTSXVD.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTSXVD.h index 3dab442168..60429e536c 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTSXVD.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTSXVD.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(FRTSXVD) public: FRTSXVD(); - virtual ~FRTSXVD(); + ~FRTSXVD(); XLS::BaseObjectPtr clone(); @@ -50,7 +50,7 @@ namespace XLSB XLS::BaseObjectPtr m_BrtFRTBegin; XLS::BaseObjectPtr m_BrtSXVD14; XLS::BaseObjectPtr m_BrtFRTEnd; - std::vector m_arFRT; + //std::vector m_arFRT; }; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTSXVIEW.cpp b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTSXVIEW.cpp index 21e41d9797..01ffe5455e 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTSXVIEW.cpp +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTSXVIEW.cpp @@ -105,7 +105,7 @@ namespace XLSB while(count > 0) { - m_arFRT.insert(m_arFRT.begin(), elements_.back()); + //m_arFRT.insert(m_arFRT.begin(), elements_.back()); elements_.pop_back(); count--; } diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTSXVIEW.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTSXVIEW.h index ff9193c0f7..3edc9dc726 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTSXVIEW.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTSXVIEW.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(FRTSXVIEW) public: FRTSXVIEW(); - virtual ~FRTSXVIEW(); + ~FRTSXVIEW(); XLS::BaseObjectPtr clone(); @@ -52,7 +52,7 @@ namespace XLSB XLS::BaseObjectPtr m_FRTSXVIEW15; XLS::BaseObjectPtr m_SXVIEW16; XLS::BaseObjectPtr m_BrtFRTEnd; - std::vector m_arFRT; + //std::vector m_arFRT; }; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTSXVIEW15.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTSXVIEW15.h index f5b64df94e..40a8b1e46a 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTSXVIEW15.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTSXVIEW15.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(FRTSXVIEW15) public: FRTSXVIEW15(); - virtual ~FRTSXVIEW15(); + ~FRTSXVIEW15(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTTABLE.cpp b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTTABLE.cpp index 0e7499d6e5..28bc55c6f7 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTTABLE.cpp +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTTABLE.cpp @@ -79,7 +79,7 @@ namespace XLSB while(count > 0) { - m_arFRT.insert(m_arFRT.begin(), elements_.back()); + //m_arFRT.insert(m_arFRT.begin(), elements_.back()); elements_.pop_back(); count--; } diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTTABLE.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTTABLE.h index 8c5db7e158..8c2ba1b2b1 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTTABLE.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTTABLE.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(FRTTABLE) public: FRTTABLE(); - virtual ~FRTTABLE(); + ~FRTTABLE(); XLS::BaseObjectPtr clone(); @@ -52,7 +52,7 @@ namespace XLSB XLS::BaseObjectPtr m_BrtFRTBegin; XLS::BaseObjectPtr m_BrtList14; XLS::BaseObjectPtr m_BrtFRTEnd; - std::vector m_arFRT; + //std::vector m_arFRT; }; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTWORKBOOK.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTWORKBOOK.h index a5a902b7e6..41d84fcbf1 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTWORKBOOK.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTWORKBOOK.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(FRTWORKBOOK) public: FRTWORKBOOK(); - virtual ~FRTWORKBOOK(); + ~FRTWORKBOOK(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTWORKSHEET.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTWORKSHEET.h index acf5bb550c..72e2fc8c7c 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTWORKSHEET.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/FRTWORKSHEET.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(FRTWORKSHEET) public: FRTWORKSHEET(); - virtual ~FRTWORKSHEET(); + ~FRTWORKSHEET(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/HEADERFOOTER.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/HEADERFOOTER.h index 5b2b7afb3e..353eb757b3 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/HEADERFOOTER.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/HEADERFOOTER.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(HEADERFOOTER) public: HEADERFOOTER(); - virtual ~HEADERFOOTER(); + ~HEADERFOOTER(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/HLINKS.cpp b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/HLINKS.cpp index d13b70b224..51f095c639 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/HLINKS.cpp +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/HLINKS.cpp @@ -60,7 +60,7 @@ namespace XLSB { if (proc.optional()) { - //m_ACUID = elements_.back(); + ////m_ACUID = elements_.back(); elements_.pop_back(); } if(proc.optional()) diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/HLINKS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/HLINKS.h index 1e1069071b..22ecad51a8 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/HLINKS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/HLINKS.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(HLINKS) public: HLINKS(); - virtual ~HLINKS(); + ~HLINKS(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ICONSET.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ICONSET.h index fbddfb5dfa..a31968a838 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ICONSET.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ICONSET.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(ICONSET) public: ICONSET(); - virtual ~ICONSET(); + ~ICONSET(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ICONSET14.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ICONSET14.h index eeee88b1b7..07e2ddd29e 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ICONSET14.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ICONSET14.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(ICONSET14) public: ICONSET14(); - virtual ~ICONSET14(); + ~ICONSET14(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/INDEXEDCOLORS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/INDEXEDCOLORS.h index 3ceadd5329..ade254ea83 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/INDEXEDCOLORS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/INDEXEDCOLORS.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(INDEXEDCOLORS) public: INDEXEDCOLORS(); - virtual ~INDEXEDCOLORS(); + ~INDEXEDCOLORS(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ISXTHCOLS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ISXTHCOLS.h index bca64c8593..99b09bd8c8 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ISXTHCOLS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ISXTHCOLS.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(ISXTHCOLS) public: ISXTHCOLS(); - virtual ~ISXTHCOLS(); + ~ISXTHCOLS(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ISXTHRWS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ISXTHRWS.h index b611445735..a55f0837b1 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ISXTHRWS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ISXTHRWS.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(ISXTHRWS) public: ISXTHRWS(); - virtual ~ISXTHRWS(); + ~ISXTHRWS(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ISXVDCOLS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ISXVDCOLS.h index ffbb9c6264..273b8ad133 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ISXVDCOLS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ISXVDCOLS.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(ISXVDCOLS) public: ISXVDCOLS(); - virtual ~ISXVDCOLS(); + ~ISXVDCOLS(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ISXVDRWS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ISXVDRWS.h index eca6eb7f2f..edda4b3d1f 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ISXVDRWS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ISXVDRWS.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(ISXVDRWS) public: ISXVDRWS(); - virtual ~ISXVDRWS(); + ~ISXVDRWS(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ISXVIS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ISXVIS.h index 1f40550f37..54e285987e 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ISXVIS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ISXVIS.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(ISXVIS) public: ISXVIS(_UINT32 cisxvis); - virtual ~ISXVIS(); + ~ISXVIS(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ITEMUNIQUENAMES.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ITEMUNIQUENAMES.h index 53246a36ca..815d5145c1 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ITEMUNIQUENAMES.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/ITEMUNIQUENAMES.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(ITEMUNIQUENAMES) public: ITEMUNIQUENAMES(); - virtual ~ITEMUNIQUENAMES(); + ~ITEMUNIQUENAMES(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/LISTCOL.cpp b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/LISTCOL.cpp index 92d2ad217b..3e4eac3ba3 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/LISTCOL.cpp +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/LISTCOL.cpp @@ -62,7 +62,7 @@ namespace XLSB { if (proc.optional()) { - m_ACUID = elements_.back(); + //m_ACUID = elements_.back(); elements_.pop_back(); } @@ -96,7 +96,7 @@ namespace XLSB while(count > 0) { - m_arFRT.insert(m_arFRT.begin(), elements_.back()); + //m_arFRT.insert(m_arFRT.begin(), elements_.back()); elements_.pop_back(); count--; } diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/LISTCOL.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/LISTCOL.h index a66ce6fe54..9545d12722 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/LISTCOL.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/LISTCOL.h @@ -41,18 +41,18 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(LISTCOL) public: LISTCOL(); - virtual ~LISTCOL(); + ~LISTCOL(); XLS::BaseObjectPtr clone(); virtual const bool loadContent(XLS::BinProcessor& proc); - XLS::BaseObjectPtr m_ACUID; + //XLS::BaseObjectPtr m_ACUID; XLS::BaseObjectPtr m_BrtBeginListCol; XLS::BaseObjectPtr m_BrtListCCFmla; XLS::BaseObjectPtr m_BrtListTrFmla; XLS::BaseObjectPtr m_LISTXMLCPR; - std::vector m_arFRT; + //std::vector m_arFRT; XLS::BaseObjectPtr m_BrtEndListCol; _UINT32 indexList; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/LISTCOLS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/LISTCOLS.h index 229bee19a5..df816608b1 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/LISTCOLS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/LISTCOLS.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(LISTCOLS) public: LISTCOLS(); - virtual ~LISTCOLS(); + ~LISTCOLS(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/LISTPARTS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/LISTPARTS.h index b7200d92db..90bcb718e8 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/LISTPARTS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/LISTPARTS.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(LISTPARTS) public: LISTPARTS(); - virtual ~LISTPARTS(); + ~LISTPARTS(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/LISTXMLCPR.cpp b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/LISTXMLCPR.cpp index 3246dc00b6..e58f422ac1 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/LISTXMLCPR.cpp +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/LISTXMLCPR.cpp @@ -66,7 +66,7 @@ namespace XLSB while(count > 0) { - m_arFRT.insert(m_arFRT.begin(), elements_.back()); + //m_arFRT.insert(m_arFRT.begin(), elements_.back()); elements_.pop_back(); count--; } diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/LISTXMLCPR.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/LISTXMLCPR.h index 5dcb457f39..0209ac341f 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/LISTXMLCPR.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/LISTXMLCPR.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(LISTXMLCPR) public: LISTXMLCPR(); - virtual ~LISTXMLCPR(); + ~LISTXMLCPR(); XLS::BaseObjectPtr clone(); @@ -49,7 +49,7 @@ namespace XLSB XLS::BaseObjectPtr m_BrtBeginListXmlCPr; XLS::BaseObjectPtr m_BrtEndListXmlCPr; - std::vector m_arFRT; + //std::vector m_arFRT; }; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/MAP.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/MAP.h index 0a820f725b..c9706b8e1a 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/MAP.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/MAP.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(MAP) public: MAP(); - virtual ~MAP(); + ~MAP(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/MERGECELLS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/MERGECELLS.h index 121f0ce3b0..2e7103db0f 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/MERGECELLS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/MERGECELLS.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(MERGECELLS) public: MERGECELLS(); - virtual ~MERGECELLS(); + ~MERGECELLS(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/MG.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/MG.h index 6f64acd0a3..c26182bdec 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/MG.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/MG.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(MG) public: MG(); - virtual ~MG(); + ~MG(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/MGMAPS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/MGMAPS.h index 62770cb6e1..dcf0d52455 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/MGMAPS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/MGMAPS.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(MGMAPS) public: MGMAPS(); - virtual ~MGMAPS(); + ~MGMAPS(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/MGS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/MGS.h index deea32625e..8b51080713 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/MGS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/MGS.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(MGS) public: MGS(); - virtual ~MGS(); + ~MGS(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/MRUCOLORS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/MRUCOLORS.h index 8c91ce561d..4cabf43d4b 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/MRUCOLORS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/MRUCOLORS.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(MRUCOLORS) public: MRUCOLORS(); - virtual ~MRUCOLORS(); + ~MRUCOLORS(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/OLEDBPR15.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/OLEDBPR15.h index 743dd3114b..0004906351 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/OLEDBPR15.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/OLEDBPR15.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(OLEDBPR15) public: OLEDBPR15(); - virtual ~OLEDBPR15(); + ~OLEDBPR15(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/OLEOBJECTS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/OLEOBJECTS.h index c0a16d4824..93f9483808 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/OLEOBJECTS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/OLEOBJECTS.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(OLEOBJECTS) public: OLEOBJECTS(); - virtual ~OLEOBJECTS(); + ~OLEOBJECTS(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCD14.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCD14.h index 6cca84d9d5..c5a3f49df4 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCD14.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCD14.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PCD14) public: PCD14(); - virtual ~PCD14(); + ~PCD14(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCD15.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCD15.h index 76862b6609..6736e38c99 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCD15.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCD15.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PCD15) public: PCD15(); - virtual ~PCD15(); + ~PCD15(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDCALCITEM.cpp b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDCALCITEM.cpp index 845a3646e0..c0cd417aca 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDCALCITEM.cpp +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDCALCITEM.cpp @@ -79,7 +79,7 @@ namespace XLSB auto count = proc.repeated(0, 0); while(count > 0) { - m_arFRT.insert(m_arFRT.begin(), elements_.back()); + //m_arFRT.insert(m_arFRT.begin(), elements_.back()); elements_.pop_back(); count--; } diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDCALCITEM.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDCALCITEM.h index 60757d8205..a63f4e52d7 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDCALCITEM.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDCALCITEM.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PCDCALCITEM) public: PCDCALCITEM(); - virtual ~PCDCALCITEM(); + ~PCDCALCITEM(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDCALCITEMS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDCALCITEMS.h index 990bb86b42..7d256eb46c 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDCALCITEMS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDCALCITEMS.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PCDCALCITEMS) public: PCDCALCITEMS(); - virtual ~PCDCALCITEMS(); + ~PCDCALCITEMS(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDCALCMEM.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDCALCMEM.h index 2bbd6c4303..18cc896416 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDCALCMEM.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDCALCMEM.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PCDCALCMEM) public: PCDCALCMEM(); - virtual ~PCDCALCMEM(); + ~PCDCALCMEM(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDCALCMEM14.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDCALCMEM14.h index 417bf424b6..a4ed174584 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDCALCMEM14.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDCALCMEM14.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PCDCALCMEM14) public: PCDCALCMEM14(); - virtual ~PCDCALCMEM14(); + ~PCDCALCMEM14(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDCALCMEM15.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDCALCMEM15.h index b92cd80428..3efe7ffe13 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDCALCMEM15.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDCALCMEM15.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PCDCALCMEM15) public: PCDCALCMEM15(); - virtual ~PCDCALCMEM15(); + ~PCDCALCMEM15(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDCALCMEMEXT.cpp b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDCALCMEMEXT.cpp index 4c1a5ecf72..ca350d7b38 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDCALCMEMEXT.cpp +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDCALCMEMEXT.cpp @@ -94,7 +94,7 @@ namespace XLSB auto count = proc.repeated(0, 0); while(count > 0) { - m_arFRT.insert(m_arFRT.begin(), elements_.back()); + //m_arFRT.insert(m_arFRT.begin(), elements_.back()); elements_.pop_back(); count--; } diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDCALCMEMEXT.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDCALCMEMEXT.h index ba33c20023..d38e988cf3 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDCALCMEMEXT.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDCALCMEMEXT.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PCDCALCMEMEXT) public: PCDCALCMEMEXT(); - virtual ~PCDCALCMEMEXT(); + ~PCDCALCMEMEXT(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDCALCMEMS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDCALCMEMS.h index c1ddba22a1..09df9055bc 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDCALCMEMS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDCALCMEMS.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PCDCALCMEMS) public: PCDCALCMEMS(); - virtual ~PCDCALCMEMS(); + ~PCDCALCMEMS(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDCALCMEMSEXT.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDCALCMEMSEXT.h index d9211ed4d7..471aa528b7 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDCALCMEMSEXT.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDCALCMEMSEXT.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PCDCALCMEMSEXT) public: PCDCALCMEMSEXT(); - virtual ~PCDCALCMEMSEXT(); + ~PCDCALCMEMSEXT(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDFATBL.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDFATBL.h index 16d211dc71..065056ea57 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDFATBL.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDFATBL.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PCDFATBL) public: PCDFATBL(); - virtual ~PCDFATBL(); + ~PCDFATBL(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDFGDISCRETE.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDFGDISCRETE.h index 8086699487..c7d1db9bde 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDFGDISCRETE.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDFGDISCRETE.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PCDFGDISCRETE) public: PCDFGDISCRETE(); - virtual ~PCDFGDISCRETE(); + ~PCDFGDISCRETE(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDFGITEMS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDFGITEMS.h index 17debb754a..1713091a20 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDFGITEMS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDFGITEMS.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PCDFGITEMS) public: PCDFGITEMS(); - virtual ~PCDFGITEMS(); + ~PCDFGITEMS(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDFGRANGE.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDFGRANGE.h index 90770e23eb..882285c4b8 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDFGRANGE.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDFGRANGE.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PCDFGRANGE) public: PCDFGRANGE(); - virtual ~PCDFGRANGE(); + ~PCDFGRANGE(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDFGROUP.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDFGROUP.h index 67617a861d..ab3ccf9364 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDFGROUP.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDFGROUP.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PCDFGROUP) public: PCDFGROUP(); - virtual ~PCDFGROUP(); + ~PCDFGROUP(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDFIELD.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDFIELD.h index 1c6ade8ca5..e93aea77de 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDFIELD.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDFIELD.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PCDFIELD) public: PCDFIELD(); - virtual ~PCDFIELD(); + ~PCDFIELD(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDFIELDS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDFIELDS.h index 4efbf67107..53181726ae 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDFIELDS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDFIELDS.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PCDFIELDS) public: PCDFIELDS(); - virtual ~PCDFIELDS(); + ~PCDFIELDS(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDH15.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDH15.h index d651bbefde..8f95c74bc0 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDH15.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDH15.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(uPCDH15) public: uPCDH15(); - virtual ~uPCDH15(); + ~uPCDH15(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDHFIELDSUSAGE.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDHFIELDSUSAGE.h index ab34a6fb33..be88e4caac 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDHFIELDSUSAGE.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDHFIELDSUSAGE.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PCDHFIELDSUSAGE) public: PCDHFIELDSUSAGE(); - virtual ~PCDHFIELDSUSAGE(); + ~PCDHFIELDSUSAGE(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDHGLEVEL.cpp b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDHGLEVEL.cpp index 78f6ca482f..95a4c0bc44 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDHGLEVEL.cpp +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDHGLEVEL.cpp @@ -72,7 +72,7 @@ namespace XLSB auto count = proc.repeated(0, 0); while(count > 0) { - m_arFRT.insert(m_arFRT.begin(), elements_.back()); + //m_arFRT.insert(m_arFRT.begin(), elements_.back()); elements_.pop_back(); count--; } diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDHGLEVEL.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDHGLEVEL.h index 044b7fce5e..b4bd8083b2 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDHGLEVEL.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDHGLEVEL.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PCDHGLEVEL) public: PCDHGLEVEL(); - virtual ~PCDHGLEVEL(); + ~PCDHGLEVEL(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDHGLEVELS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDHGLEVELS.h index 94c7b6e72f..ff1b5882e1 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDHGLEVELS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDHGLEVELS.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PCDHGLEVELS) public: PCDHGLEVELS(); - virtual ~PCDHGLEVELS(); + ~PCDHGLEVELS(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDHGLGMEMBER.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDHGLGMEMBER.h index fa45187956..394a97f0eb 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDHGLGMEMBER.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDHGLGMEMBER.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PCDHGLGMEMBER) public: PCDHGLGMEMBER(); - virtual ~PCDHGLGMEMBER(); + ~PCDHGLGMEMBER(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDHGLGMEMBERS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDHGLGMEMBERS.h index c9e7584f9d..17fa321575 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDHGLGMEMBERS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDHGLGMEMBERS.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PCDHGLGMEMBERS) public: PCDHGLGMEMBERS(); - virtual ~PCDHGLGMEMBERS(); + ~PCDHGLGMEMBERS(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDHGLGROUP.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDHGLGROUP.h index a1026f239e..e282c7d271 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDHGLGROUP.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDHGLGROUP.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PCDHGLGROUP) public: PCDHGLGROUP(); - virtual ~PCDHGLGROUP(); + ~PCDHGLGROUP(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDHGLGROUPS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDHGLGROUPS.h index e0834b8b86..b9c9c58da0 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDHGLGROUPS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDHGLGROUPS.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PCDHGLGROUPS) public: PCDHGLGROUPS(); - virtual ~PCDHGLGROUPS(); + ~PCDHGLGROUPS(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDHIERARCHIES.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDHIERARCHIES.h index 10e409b0d0..d651d22718 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDHIERARCHIES.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDHIERARCHIES.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PCDHIERARCHIES) public: PCDHIERARCHIES(); - virtual ~PCDHIERARCHIES(); + ~PCDHIERARCHIES(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDHIERARCHY.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDHIERARCHY.h index bf4c219b84..d9d6ecd208 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDHIERARCHY.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDHIERARCHY.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PCDHIERARCHY) public: PCDHIERARCHY(); - virtual ~PCDHIERARCHY(); + ~PCDHIERARCHY(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDI.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDI.h index 7a256db2a5..2939933d83 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDI.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDI.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PCDI) public: PCDI(); - virtual ~PCDI(); + ~PCDI(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDIA.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDIA.h index 4bdeaf37a1..7e155c76ce 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDIA.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDIA.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PCDIA) public: PCDIA(); - virtual ~PCDIA(); + ~PCDIA(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDIDT.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDIDT.h index 6204a1dffd..a858aa4501 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDIDT.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDIDT.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PCDIDT) public: PCDIDT(); - virtual ~PCDIDT(); + ~PCDIDT(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDIRUN.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDIRUN.h index 5a4cd5612a..501eeac1cf 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDIRUN.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDIRUN.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PCDIRUN) public: PCDIRUN(); - virtual ~PCDIRUN(); + ~PCDIRUN(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDKPI.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDKPI.h index cfe5919cef..9209f73f8f 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDKPI.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDKPI.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PCDKPI) public: PCDKPI(); - virtual ~PCDKPI(); + ~PCDKPI(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDKPIS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDKPIS.h index bfffe01d96..73394e14d8 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDKPIS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDKPIS.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PCDKPIS) public: PCDKPIS(); - virtual ~PCDKPIS(); + ~PCDKPIS(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSCONSOL.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSCONSOL.h index b509e9599c..ffcce6fcbf 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSCONSOL.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSCONSOL.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PCDSCONSOL) public: PCDSCONSOL(); - virtual ~PCDSCONSOL(); + ~PCDSCONSOL(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSCPAGE.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSCPAGE.h index 7ed59b6f60..c1c1203de9 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSCPAGE.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSCPAGE.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PCDSCPAGE) public: PCDSCPAGE(); - virtual ~PCDSCPAGE(); + ~PCDSCPAGE(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSCPAGES.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSCPAGES.h index 6636ca496f..8c41655166 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSCPAGES.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSCPAGES.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PCDSCPAGES) public: PCDSCPAGES(); - virtual ~PCDSCPAGES(); + ~PCDSCPAGES(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSCPITEM.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSCPITEM.h index 48e23bf482..f00431add5 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSCPITEM.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSCPITEM.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PCDSCPITEM) public: PCDSCPITEM(); - virtual ~PCDSCPITEM(); + ~PCDSCPITEM(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSCSET.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSCSET.h index ea184af912..99779d5c40 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSCSET.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSCSET.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PCDSCSET) public: PCDSCSET(); - virtual ~PCDSCSET(); + ~PCDSCSET(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSCSETS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSCSETS.h index 2185d38d0e..cfb79e6881 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSCSETS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSCSETS.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PCDSCSETS) public: PCDSCSETS(); - virtual ~PCDSCSETS(); + ~PCDSCSETS(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSDTCEMEMBER.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSDTCEMEMBER.h index 8dc55c6811..8a6f72068d 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSDTCEMEMBER.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSDTCEMEMBER.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PCDSDTCEMEMBER) public: PCDSDTCEMEMBER(); - virtual ~PCDSDTCEMEMBER(); + ~PCDSDTCEMEMBER(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSDTCEMEMBERS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSDTCEMEMBERS.h index f84fcada7e..cfb8765157 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSDTCEMEMBERS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSDTCEMEMBERS.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PCDSDTCEMEMBERS) public: PCDSDTCEMEMBERS(); - virtual ~PCDSDTCEMEMBERS(); + ~PCDSDTCEMEMBERS(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSDTCEMEMBERSSORTBY.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSDTCEMEMBERSSORTBY.h index 096b9436b9..42b89704ab 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSDTCEMEMBERSSORTBY.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSDTCEMEMBERSSORTBY.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PCDSDTCEMEMBERSSORTBY) public: PCDSDTCEMEMBERSSORTBY(); - virtual ~PCDSDTCEMEMBERSSORTBY(); + ~PCDSDTCEMEMBERSSORTBY(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSDTCENTRIES.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSDTCENTRIES.h index 44595e526b..ad787ab74f 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSDTCENTRIES.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSDTCENTRIES.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PCDSDTCENTRIES) public: PCDSDTCENTRIES(); - virtual ~PCDSDTCENTRIES(); + ~PCDSDTCENTRIES(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSDTCENTRY.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSDTCENTRY.h index cb575fc394..207dfef7ef 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSDTCENTRY.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSDTCENTRY.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PCDSDTCENTRY) public: PCDSDTCENTRY(); - virtual ~PCDSDTCENTRY(); + ~PCDSDTCENTRY(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSDTCQUERIES.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSDTCQUERIES.h index 55db582c76..848388e182 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSDTCQUERIES.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSDTCQUERIES.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PCDSDTCQUERIES) public: PCDSDTCQUERIES(); - virtual ~PCDSDTCQUERIES(); + ~PCDSDTCQUERIES(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSDTCQUERY.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSDTCQUERY.h index 7b40a8a49d..9040ebd857 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSDTCQUERY.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSDTCQUERY.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PCDSDTCQUERY) public: PCDSDTCQUERY(); - virtual ~PCDSDTCQUERY(); + ~PCDSDTCQUERY(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSDTCSET.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSDTCSET.h index 814ac26ca4..e194272a88 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSDTCSET.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSDTCSET.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PCDSDTCSET) public: PCDSDTCSET(); - virtual ~PCDSDTCSET(); + ~PCDSDTCSET(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSDTCSETS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSDTCSETS.h index 457c93c2e1..41f12b0d97 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSDTCSETS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSDTCSETS.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PCDSDTCSETS) public: PCDSDTCSETS(); - virtual ~PCDSDTCSETS(); + ~PCDSDTCSETS(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSDTUPLECACHE.cpp b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSDTUPLECACHE.cpp index 1393d597a5..64d6b82b58 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSDTUPLECACHE.cpp +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSDTUPLECACHE.cpp @@ -93,7 +93,7 @@ namespace XLSB auto count = proc.repeated(0, 0); while(count > 0) { - m_arFRT.insert(m_arFRT.begin(), elements_.back()); + //m_arFRT.insert(m_arFRT.begin(), elements_.back()); elements_.pop_back(); count--; } diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSDTUPLECACHE.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSDTUPLECACHE.h index 44f4862845..a1bec3debb 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSDTUPLECACHE.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSDTUPLECACHE.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PCDSDTUPLECACHE) public: PCDSDTUPLECACHE(); - virtual ~PCDSDTUPLECACHE(); + ~PCDSDTUPLECACHE(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSFCIENTRIES.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSFCIENTRIES.h index 262308b560..a451490fea 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSFCIENTRIES.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSFCIENTRIES.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PCDSFCIENTRIES) public: PCDSFCIENTRIES(); - virtual ~PCDSFCIENTRIES(); + ~PCDSFCIENTRIES(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSOURCE.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSOURCE.h index e37d52f12c..3a09121cba 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSOURCE.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSOURCE.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PCDSOURCE) public: PCDSOURCE(); - virtual ~PCDSOURCE(); + ~PCDSOURCE(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSOURCE14.cpp b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSOURCE14.cpp index 8c530d4871..8be6079fd1 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSOURCE14.cpp +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSOURCE14.cpp @@ -79,7 +79,7 @@ namespace XLSB while(count > 0) { - m_arFRT.insert(m_arFRT.begin(), elements_.back()); + //m_arFRT.insert(m_arFRT.begin(), elements_.back()); elements_.pop_back(); count--; } diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSOURCE14.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSOURCE14.h index 1e09a05c87..7396941be9 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSOURCE14.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSOURCE14.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PCDSOURCE14) public: PCDSOURCE14(); - virtual ~PCDSOURCE14(); + ~PCDSOURCE14(); XLS::BaseObjectPtr clone(); @@ -50,7 +50,7 @@ namespace XLSB XLS::BaseObjectPtr m_BrtFRTBegin; XLS::BaseObjectPtr m_BrtPivotCacheConnectionName; XLS::BaseObjectPtr m_BrtFRTEnd; - std::vector m_arFRT; + //std::vector m_arFRT; }; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSRANGE.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSRANGE.h index 1145b2acac..94f51be247 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSRANGE.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PCDSRANGE.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PCDSRANGE) public: PCDSRANGE(); - virtual ~PCDSRANGE(); + ~PCDSRANGE(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PIVOTCACHEID.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PIVOTCACHEID.h index 8ffd638eb2..cc9bedc53d 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PIVOTCACHEID.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PIVOTCACHEID.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PIVOTCACHEID) public: PIVOTCACHEID(); - virtual ~PIVOTCACHEID(); + ~PIVOTCACHEID(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PIVOTCACHEIDS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PIVOTCACHEIDS.h index 991d6fd76b..f6f5fc7f55 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PIVOTCACHEIDS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PIVOTCACHEIDS.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PIVOTCACHEIDS) public: PIVOTCACHEIDS(); - virtual ~PIVOTCACHEIDS(); + ~PIVOTCACHEIDS(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PIVOTCACHERECORD.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PIVOTCACHERECORD.h index 53ced4843b..2ff810943b 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PIVOTCACHERECORD.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PIVOTCACHERECORD.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PIVOTCACHERECORD) public: PIVOTCACHERECORD(); - virtual ~PIVOTCACHERECORD(); + ~PIVOTCACHERECORD(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PIVOTCACHERECORDDT.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PIVOTCACHERECORDDT.h index c7cb3b8a49..d29076bb8f 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PIVOTCACHERECORDDT.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PIVOTCACHERECORDDT.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PIVOTCACHERECORDDT) public: PIVOTCACHERECORDDT(); - virtual ~PIVOTCACHERECORDDT(); + ~PIVOTCACHERECORDDT(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PIVOTCACHERECORDS.cpp b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PIVOTCACHERECORDS.cpp index 278a968297..98249c4238 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PIVOTCACHERECORDS.cpp +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PIVOTCACHERECORDS.cpp @@ -76,7 +76,7 @@ namespace XLSB while(count > 0) { - m_arFRT.insert(m_arFRT.begin(), elements_.back()); + //m_arFRT.insert(m_arFRT.begin(), elements_.back()); elements_.pop_back(); count--; } diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PIVOTCACHERECORDS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PIVOTCACHERECORDS.h index 5359ef287e..2d677d373a 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PIVOTCACHERECORDS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PIVOTCACHERECORDS.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PIVOTCACHERECORDS) public: PIVOTCACHERECORDS(); - virtual ~PIVOTCACHERECORDS(); + ~PIVOTCACHERECORDS(); XLS::BaseObjectPtr clone(); @@ -49,7 +49,7 @@ namespace XLSB XLS::BaseObjectPtr m_BrtBeginPivotCacheRecords; std::vector m_arPIVOTCACHERECORD; - std::vector m_arFRT; + //std::vector m_arFRT; XLS::BaseObjectPtr m_BrtEndPivotCacheRecords; }; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PIVOTFILTERCOLUMN.cpp b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PIVOTFILTERCOLUMN.cpp index 5cafbc1d8f..fa33ab4b65 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PIVOTFILTERCOLUMN.cpp +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PIVOTFILTERCOLUMN.cpp @@ -85,7 +85,7 @@ namespace XLSB while(count > 0) { - m_arFRT.insert(m_arFRT.begin(), elements_.back()); + //m_arFRT.insert(m_arFRT.begin(), elements_.back()); elements_.pop_back(); count--; } diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PIVOTFILTERCOLUMN.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PIVOTFILTERCOLUMN.h index d7f044d246..d7fad45c1c 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PIVOTFILTERCOLUMN.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PIVOTFILTERCOLUMN.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PIVOTFILTERCOLUMN) public: PIVOTFILTERCOLUMN(); - virtual ~PIVOTFILTERCOLUMN(); + ~PIVOTFILTERCOLUMN(); XLS::BaseObjectPtr clone(); @@ -49,7 +49,7 @@ namespace XLSB XLS::BaseObjectPtr m_BrtBeginFilterColumn; XLS::BaseObjectPtr m_source; - std::vector m_arFRT; + //std::vector m_arFRT; }; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PIVOTFILTERS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PIVOTFILTERS.h index 629547139e..8a2ec62d99 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PIVOTFILTERS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PIVOTFILTERS.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PIVOTFILTERS) public: PIVOTFILTERS(); - virtual ~PIVOTFILTERS(); + ~PIVOTFILTERS(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PIVOTROWS15.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PIVOTROWS15.h index 3ff1145fd7..02d1b370a6 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PIVOTROWS15.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PIVOTROWS15.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PIVOTROWS15) public: PIVOTROWS15(); - virtual ~PIVOTROWS15(); + ~PIVOTROWS15(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PIVOTRULE.cpp b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PIVOTRULE.cpp index ff36953447..9c575012dd 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PIVOTRULE.cpp +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PIVOTRULE.cpp @@ -73,7 +73,7 @@ namespace XLSB while(count > 0) { - m_arFRT.insert(m_arFRT.begin(), elements_.back()); + //m_arFRT.insert(m_arFRT.begin(), elements_.back()); elements_.pop_back(); count--; } diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PIVOTRULE.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PIVOTRULE.h index 108511789c..fe163fa2fb 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PIVOTRULE.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PIVOTRULE.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PIVOTRULE) public: PIVOTRULE(); - virtual ~PIVOTRULE(); + ~PIVOTRULE(); XLS::BaseObjectPtr clone(); @@ -51,7 +51,7 @@ namespace XLSB XLS::BaseObjectPtr m_BrtBeginPRule; XLS::BaseObjectPtr m_PRFILTERS; - std::vector m_arFRT; + //std::vector m_arFRT; XLS::BaseObjectPtr m_BrtEndPRule; }; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PIVOTRULE14.cpp b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PIVOTRULE14.cpp index 4afc69359b..702621ce7e 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PIVOTRULE14.cpp +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PIVOTRULE14.cpp @@ -73,7 +73,7 @@ namespace XLSB while(count > 0) { - m_arFRT.insert(m_arFRT.begin(), elements_.back()); + //m_arFRT.insert(m_arFRT.begin(), elements_.back()); elements_.pop_back(); count--; } diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PIVOTRULE14.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PIVOTRULE14.h index b7c7b13aa1..83423bfc5e 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PIVOTRULE14.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PIVOTRULE14.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PIVOTRULE14) public: PIVOTRULE14(); - virtual ~PIVOTRULE14(); + ~PIVOTRULE14(); XLS::BaseObjectPtr clone(); @@ -51,7 +51,7 @@ namespace XLSB XLS::BaseObjectPtr m_BrtBeginPRule14; XLS::BaseObjectPtr m_PRFILTERS14; - std::vector m_arFRT; + //std::vector m_arFRT; XLS::BaseObjectPtr m_BrtEndPRule14; }; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PIVOTRULES.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PIVOTRULES.h index 8c2dad6835..e567c1d11e 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PIVOTRULES.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PIVOTRULES.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PIVOTRULES) public: PIVOTRULES(); - virtual ~PIVOTRULES(); + ~PIVOTRULES(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PIVOTRULES14.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PIVOTRULES14.h index e253ecc46c..388b973523 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PIVOTRULES14.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PIVOTRULES14.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PIVOTRULES14) public: PIVOTRULES14(); - virtual ~PIVOTRULES14(); + ~PIVOTRULES14(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PIVOTTABLEUISETTINGS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PIVOTTABLEUISETTINGS.h index af6735feb4..197b3a7028 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PIVOTTABLEUISETTINGS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PIVOTTABLEUISETTINGS.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PIVOTTABLEUISETTINGS) public: PIVOTTABLEUISETTINGS(); - virtual ~PIVOTTABLEUISETTINGS(); + ~PIVOTTABLEUISETTINGS(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PIVOTVALUECELL15.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PIVOTVALUECELL15.h index c3602db893..5c1b3e375a 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PIVOTVALUECELL15.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PIVOTVALUECELL15.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PIVOTVALUECELL15) public: PIVOTVALUECELL15(); - virtual ~PIVOTVALUECELL15(); + ~PIVOTVALUECELL15(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PIVOTVALUECELLS15.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PIVOTVALUECELLS15.h index a282d90281..fcaeb35d40 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PIVOTVALUECELLS15.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PIVOTVALUECELLS15.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PIVOTVALUECELLS15) public: PIVOTVALUECELLS15(); - virtual ~PIVOTVALUECELLS15(); + ~PIVOTVALUECELLS15(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PNAME.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PNAME.h index 7ae7260d06..9fe5269dd2 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PNAME.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PNAME.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PNAME) public: PNAME(); - virtual ~PNAME(); + ~PNAME(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PNAMES.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PNAMES.h index 5c35a35203..763355a708 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PNAMES.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PNAMES.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PNAMES) public: PNAMES(); - virtual ~PNAMES(); + ~PNAMES(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PNPAIR.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PNPAIR.h index def8686b0a..00f05b1626 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PNPAIR.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PNPAIR.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PNPAIR) public: PNPAIR(); - virtual ~PNPAIR(); + ~PNPAIR(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PNPAIRS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PNPAIRS.h index d9593b794c..677eaf2900 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PNPAIRS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PNPAIRS.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PNPAIRS) public: PNPAIRS(); - virtual ~PNPAIRS(); + ~PNPAIRS(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PRFILTER.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PRFILTER.h index 59bba10df6..2b37ad8abb 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PRFILTER.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PRFILTER.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PRFILTER) public: PRFILTER(); - virtual ~PRFILTER(); + ~PRFILTER(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PRFILTER14.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PRFILTER14.h index ad738918c8..8b3972e08d 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PRFILTER14.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PRFILTER14.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PRFILTER14) public: PRFILTER14(); - virtual ~PRFILTER14(); + ~PRFILTER14(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PRFILTERS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PRFILTERS.h index 3ee18bf35c..d504612fae 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PRFILTERS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PRFILTERS.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PRFILTERS) public: PRFILTERS(); - virtual ~PRFILTERS(); + ~PRFILTERS(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PRFILTERS14.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PRFILTERS14.h index dff4195e19..8331ceb04c 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PRFILTERS14.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PRFILTERS14.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PRFILTERS14) public: PRFILTERS14(); - virtual ~PRFILTERS14(); + ~PRFILTERS14(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PRFITEM.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PRFITEM.h index dc82a8b940..dac2906d6b 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PRFITEM.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PRFITEM.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PRFITEM) public: PRFITEM(); - virtual ~PRFITEM(); + ~PRFITEM(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PRFITEM14.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PRFITEM14.h index b4c002f656..a3b72a0148 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PRFITEM14.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/PRFITEM14.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(PRFITEM14) public: PRFITEM14(); - virtual ~PRFITEM14(); + ~PRFITEM14(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/QSI.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/QSI.h index 22073d9187..34541aee32 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/QSI.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/QSI.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(QSI) public: QSI(); - virtual ~QSI(); + ~QSI(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/QSIF.cpp b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/QSIF.cpp index b87d4204c7..c065249783 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/QSIF.cpp +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/QSIF.cpp @@ -65,7 +65,7 @@ namespace XLSB auto count = proc.repeated(0, 0); while(count > 0) { - m_arFRT.insert(m_arFRT.begin(), elements_.back()); + //m_arFRT.insert(m_arFRT.begin(), elements_.back()); elements_.pop_back(); count--; } diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/QSIF.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/QSIF.h index 010cc3803a..e7ba904a7f 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/QSIF.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/QSIF.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(QSIF) public: QSIF(); - virtual ~QSIF(); + ~QSIF(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/QSIFS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/QSIFS.h index 8a82a54bd7..9f23b730a2 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/QSIFS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/QSIFS.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(QSIFS) public: QSIFS(); - virtual ~QSIFS(); + ~QSIFS(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/QSIR.cpp b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/QSIR.cpp index 50d040882c..caeaa70f34 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/QSIR.cpp +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/QSIR.cpp @@ -86,7 +86,7 @@ namespace XLSB auto count = proc.repeated(0, 0); while(count > 0) { - m_arFRT.insert(m_arFRT.begin(), elements_.back()); + //m_arFRT.insert(m_arFRT.begin(), elements_.back()); elements_.pop_back(); count--; } diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/QSIR.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/QSIR.h index f1b5dc0c99..14f3053964 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/QSIR.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/QSIR.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(QSIR) public: QSIR(); - virtual ~QSIR(); + ~QSIR(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/RICHFILTERCONTENT.cpp b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/RICHFILTERCONTENT.cpp index 5b19e92046..5c9ef0305f 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/RICHFILTERCONTENT.cpp +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/RICHFILTERCONTENT.cpp @@ -80,7 +80,7 @@ namespace XLSB while(count > 0) { - m_arFRT.insert(m_arFRT.begin(), elements_.back()); + //m_arFRT.insert(m_arFRT.begin(), elements_.back()); elements_.pop_back(); count--; } diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/RICHFILTERCONTENT.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/RICHFILTERCONTENT.h index 82cb6ad251..c7dd33365d 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/RICHFILTERCONTENT.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/RICHFILTERCONTENT.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(RICHFILTERCONTENT) public: RICHFILTERCONTENT(); - virtual ~RICHFILTERCONTENT(); + ~RICHFILTERCONTENT(); XLS::BaseObjectPtr clone(); @@ -51,7 +51,7 @@ namespace XLSB XLS::BaseObjectPtr m_BrtBeginRichFilterColumn; XLS::BaseObjectPtr m_source; - std::vector m_arFRT; + //std::vector m_arFRT; XLS::BaseObjectPtr m_BrtEndRichFilterColumn; }; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/RICHFILTERS.cpp b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/RICHFILTERS.cpp index 6c3bdef0d3..2c21dc097c 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/RICHFILTERS.cpp +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/RICHFILTERS.cpp @@ -80,7 +80,7 @@ namespace XLSB while(count > 0) { - m_arFRT.insert(m_arFRT.begin(), elements_.back()); + //m_arFRT.insert(m_arFRT.begin(), elements_.back()); elements_.pop_back(); count--; } diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/RICHFILTERS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/RICHFILTERS.h index 4f4c28600c..29caf7b349 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/RICHFILTERS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/RICHFILTERS.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(RICHFILTERS) public: RICHFILTERS(); - virtual ~RICHFILTERS(); + ~RICHFILTERS(); XLS::BaseObjectPtr clone(); @@ -52,7 +52,7 @@ namespace XLSB XLS::BaseObjectPtr m_BrtBeginRichFilters; std::vector m_arBrtRichFilter; std::vector m_arBrtRichFilterDateGroupItem; - std::vector m_arFRT; + //std::vector m_arFRT; XLS::BaseObjectPtr m_BrtEndRichFilters; }; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/RICHSORTCONDITION.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/RICHSORTCONDITION.h index 2f245fb425..139a31514e 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/RICHSORTCONDITION.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/RICHSORTCONDITION.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(RICHSORTCONDITION) public: RICHSORTCONDITION(); - virtual ~RICHSORTCONDITION(); + ~RICHSORTCONDITION(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/RWBRK.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/RWBRK.h index dc4d9e5d60..dde46e115a 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/RWBRK.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/RWBRK.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(RWBRK) public: RWBRK(); - virtual ~RWBRK(); + ~RWBRK(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SHAREDSTRINGS.cpp b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SHAREDSTRINGS.cpp index 197093023c..840b5a48ce 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SHAREDSTRINGS.cpp +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SHAREDSTRINGS.cpp @@ -77,7 +77,7 @@ namespace XLSB while(count > 0) { - m_arFRT.insert(m_arFRT.begin(), elements_.back()); + //m_arFRT.insert(m_arFRT.begin(), elements_.back()); elements_.pop_back(); count--; } diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SHAREDSTRINGS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SHAREDSTRINGS.h index 988b5dc92e..fd3bd3c7a2 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SHAREDSTRINGS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SHAREDSTRINGS.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SHAREDSTRINGS) public: SHAREDSTRINGS(); - virtual ~SHAREDSTRINGS(); + ~SHAREDSTRINGS(); XLS::BaseObjectPtr clone(); @@ -51,7 +51,7 @@ namespace XLSB XLS::BaseObjectPtr m_BrtBeginSst; std::vector m_arBrtSSTItem; - std::vector m_arFRT; + //std::vector m_arFRT; XLS::BaseObjectPtr m_BrtEndSst; }; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SHRFMLACELL.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SHRFMLACELL.h index 032980eab0..997ab85f19 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SHRFMLACELL.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SHRFMLACELL.h @@ -43,16 +43,20 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SHRFMLACELL) public: SHRFMLACELL(_INT32 row, _INT32 col, std::vector& shared_formulas_locations_ref); - virtual ~SHRFMLACELL(); + ~SHRFMLACELL(); XLS::BaseObjectPtr clone(); virtual const bool loadContent(XLS::BinProcessor& proc); + static const XLS::ElementType type = XLS::typeSHRFMLACELL; + XLS::BaseObjectPtr m_source; _INT32 m_Row; _INT32 m_Col; + XLS::BaseObjectPtr _fmlacell; + std::vector& shared_formulas_locations_ref_; int m_sharedIndex; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICER.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICER.h index 0c0258e51e..96a3cfa747 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICER.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICER.h @@ -41,15 +41,15 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SLICER) public: SLICER(); - virtual ~SLICER(); + ~SLICER(); XLS::BaseObjectPtr clone(); virtual const bool loadContent(XLS::BinProcessor& proc); XLS::BaseObjectPtr m_BrtBeginSlicer; - XLS::BaseObjectPtr m_ACUID; - std::vector m_arFRT; + //XLS::BaseObjectPtr m_ACUID; + //std::vector m_arFRT; XLS::BaseObjectPtr m_BrtEndSlicer; }; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICERCACHE.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICERCACHE.h index c7e2d18c34..704977f3be 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICERCACHE.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICERCACHE.h @@ -41,14 +41,14 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SLICERCACHE) public: SLICERCACHE(); - virtual ~SLICERCACHE(); + ~SLICERCACHE(); XLS::BaseObjectPtr clone(); virtual const bool loadContent(XLS::BinProcessor& proc); XLS::BaseObjectPtr m_BrtBeginSlicerCache; - XLS::BaseObjectPtr m_ACUID; + //XLS::BaseObjectPtr m_ACUID; XLS::BaseObjectPtr m_BrtBeginSlicerCacheDef; XLS::BaseObjectPtr m_BrtSlicerCachePivotTables; XLS::BaseObjectPtr m_slicerCacheData; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICERCACHEBOOKPIVOTTABLES.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICERCACHEBOOKPIVOTTABLES.h index d684dd9629..68d004c2c5 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICERCACHEBOOKPIVOTTABLES.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICERCACHEBOOKPIVOTTABLES.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SLICERCACHEBOOKPIVOTTABLES) public: SLICERCACHEBOOKPIVOTTABLES(); - virtual ~SLICERCACHEBOOKPIVOTTABLES(); + ~SLICERCACHEBOOKPIVOTTABLES(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICERCACHECROSSFILTEREXT.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICERCACHECROSSFILTEREXT.h index f8262b19f6..469a1223eb 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICERCACHECROSSFILTEREXT.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICERCACHECROSSFILTEREXT.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SLICERCACHECROSSFILTEREXT) public: SLICERCACHECROSSFILTEREXT(); - virtual ~SLICERCACHECROSSFILTEREXT(); + ~SLICERCACHECROSSFILTEREXT(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICERCACHEID.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICERCACHEID.h index d17abd0b09..b6225dc0fe 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICERCACHEID.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICERCACHEID.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SLICERCACHEID) public: SLICERCACHEID(); - virtual ~SLICERCACHEID(); + ~SLICERCACHEID(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICERCACHEIDS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICERCACHEIDS.h index ae6eef1f48..9477244322 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICERCACHEIDS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICERCACHEIDS.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SLICERCACHEIDS) public: SLICERCACHEIDS(); - virtual ~SLICERCACHEIDS(); + ~SLICERCACHEIDS(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICERCACHELEVELDATA.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICERCACHELEVELDATA.h index 6aae2bd6af..17542d71e0 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICERCACHELEVELDATA.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICERCACHELEVELDATA.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SLICERCACHELEVELDATA) public: SLICERCACHELEVELDATA(); - virtual ~SLICERCACHELEVELDATA(); + ~SLICERCACHELEVELDATA(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICERCACHELEVELSDATA.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICERCACHELEVELSDATA.h index 57f09bcdd0..e1bdf15dc8 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICERCACHELEVELSDATA.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICERCACHELEVELSDATA.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SLICERCACHELEVELSDATA) public: SLICERCACHELEVELSDATA(); - virtual ~SLICERCACHELEVELSDATA(); + ~SLICERCACHELEVELSDATA(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICERCACHENATIVEITEMS.cpp b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICERCACHENATIVEITEMS.cpp index 8303a610da..03866b044c 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICERCACHENATIVEITEMS.cpp +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICERCACHENATIVEITEMS.cpp @@ -73,7 +73,7 @@ namespace XLSB while(count > 0) { - m_arFRT.insert(m_arFRT.begin(), elements_.back()); + //m_arFRT.insert(m_arFRT.begin(), elements_.back()); elements_.pop_back(); count--; } diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICERCACHENATIVEITEMS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICERCACHENATIVEITEMS.h index e7773b68c7..2dbbd0a674 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICERCACHENATIVEITEMS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICERCACHENATIVEITEMS.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SLICERCACHENATIVEITEMS) public: SLICERCACHENATIVEITEMS(); - virtual ~SLICERCACHENATIVEITEMS(); + ~SLICERCACHENATIVEITEMS(); XLS::BaseObjectPtr clone(); @@ -51,7 +51,7 @@ namespace XLSB XLS::BaseObjectPtr m_BrtBeginSlicerCacheNative; XLS::BaseObjectPtr m_BrtSlicerCacheNativeItem; - std::vector m_arFRT; + //std::vector m_arFRT; XLS::BaseObjectPtr m_BrtEndSlicerCacheNative; }; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICERCACHEOLAPIMPL.cpp b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICERCACHEOLAPIMPL.cpp index de70177cf9..01859e6828 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICERCACHEOLAPIMPL.cpp +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICERCACHEOLAPIMPL.cpp @@ -80,7 +80,7 @@ namespace XLSB while(count > 0) { - m_arFRT.insert(m_arFRT.begin(), elements_.back()); + //m_arFRT.insert(m_arFRT.begin(), elements_.back()); elements_.pop_back(); count--; } diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICERCACHEOLAPIMPL.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICERCACHEOLAPIMPL.h index f2f0bb49e8..fa8e430fc6 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICERCACHEOLAPIMPL.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICERCACHEOLAPIMPL.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SLICERCACHEOLAPIMPL) public: SLICERCACHEOLAPIMPL(); - virtual ~SLICERCACHEOLAPIMPL(); + ~SLICERCACHEOLAPIMPL(); XLS::BaseObjectPtr clone(); @@ -52,7 +52,7 @@ namespace XLSB XLS::BaseObjectPtr m_BrtBeginSlicerCacheOlapImpl; XLS::BaseObjectPtr m_SLICERCACHELEVELSDATA; XLS::BaseObjectPtr m_SLICERCACHESELECTIONS; - std::vector m_arFRT; + //std::vector m_arFRT; XLS::BaseObjectPtr m_BrtEndSlicerCacheOlapImpl; }; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICERCACHESELECTIONS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICERCACHESELECTIONS.h index 7a7e5b8243..94d386e441 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICERCACHESELECTIONS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICERCACHESELECTIONS.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SLICERCACHESELECTIONS) public: SLICERCACHESELECTIONS(); - virtual ~SLICERCACHESELECTIONS(); + ~SLICERCACHESELECTIONS(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICERCACHESIRANGE.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICERCACHESIRANGE.h index fc65c1a76d..80556c7952 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICERCACHESIRANGE.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICERCACHESIRANGE.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SLICERCACHESIRANGE) public: SLICERCACHESIRANGE(); - virtual ~SLICERCACHESIRANGE(); + ~SLICERCACHESIRANGE(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICERCACHESIRANGES.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICERCACHESIRANGES.h index 3b0918b469..4b43f79b66 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICERCACHESIRANGES.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICERCACHESIRANGES.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SLICERCACHESIRANGES) public: SLICERCACHESIRANGES(); - virtual ~SLICERCACHESIRANGES(); + ~SLICERCACHESIRANGES(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICERCACHESPIVOTCACHEID.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICERCACHESPIVOTCACHEID.h index 7b33f2ffe9..0c4ada5f87 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICERCACHESPIVOTCACHEID.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICERCACHESPIVOTCACHEID.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SLICERCACHESPIVOTCACHEID) public: SLICERCACHESPIVOTCACHEID(); - virtual ~SLICERCACHESPIVOTCACHEID(); + ~SLICERCACHESPIVOTCACHEID(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICERCACHESPIVOTCACHEIDS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICERCACHESPIVOTCACHEIDS.h index 543387b37d..f3c3f20bdc 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICERCACHESPIVOTCACHEIDS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICERCACHESPIVOTCACHEIDS.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SLICERCACHESPIVOTCACHEIDS) public: SLICERCACHESPIVOTCACHEIDS(); - virtual ~SLICERCACHESPIVOTCACHEIDS(); + ~SLICERCACHESPIVOTCACHEIDS(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICERCACHE_bu.cpp b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICERCACHE_bu.cpp index ab8071658a..6e54c72498 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICERCACHE_bu.cpp +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICERCACHE_bu.cpp @@ -72,7 +72,7 @@ namespace XLSB if (proc.optional()) { - m_ACUID = elements_.back(); + //m_ACUID = elements_.back(); elements_.pop_back(); } diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICEREX.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICEREX.h index d34d68e6a9..a8d294bd56 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICEREX.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICEREX.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SLICEREX) public: SLICEREX(); - virtual ~SLICEREX(); + ~SLICEREX(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICERS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICERS.h index 1724b83748..ca53002970 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICERS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICERS.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SLICERS) public: SLICERS(); - virtual ~SLICERS(); + ~SLICERS(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICERSEX.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICERSEX.h index 8a0c00954a..fe6f1c38cc 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICERSEX.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICERSEX.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SLICERSEX) public: SLICERSEX(); - virtual ~SLICERSEX(); + ~SLICERSEX(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICERSTYLE.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICERSTYLE.h index 2d46e58de5..1c18f63a32 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICERSTYLE.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICERSTYLE.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SLICERSTYLE) public: SLICERSTYLE(); - virtual ~SLICERSTYLE(); + ~SLICERSTYLE(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICERSTYLES.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICERSTYLES.h index a694db8528..ca6f929101 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICERSTYLES.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICERSTYLES.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SLICERSTYLES) public: SLICERSTYLES(); - virtual ~SLICERSTYLES(); + ~SLICERSTYLES(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICER_bu.cpp b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICER_bu.cpp index 30543c7f55..cfe341cb58 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICER_bu.cpp +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SLICER_bu.cpp @@ -59,7 +59,7 @@ namespace XLSB { if (proc.optional()) { - m_ACUID = elements_.back(); + //m_ACUID = elements_.back(); elements_.pop_back(); } @@ -71,7 +71,7 @@ namespace XLSB while (proc.optional()) { - m_arFRT.push_back(elements_.back()); + //m_arFRT.push_back(elements_.back()); elements_.pop_back(); } diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SORTCOND.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SORTCOND.h index 1db88f7fe8..4b827dcd71 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SORTCOND.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SORTCOND.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SORTCOND) public: SORTCOND(); - virtual ~SORTCOND(); + ~SORTCOND(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SORTCOND14.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SORTCOND14.h index ccc06a0322..fb44a367d8 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SORTCOND14.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SORTCOND14.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SORTCOND14) public: SORTCOND14(); - virtual ~SORTCOND14(); + ~SORTCOND14(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SORTCONDS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SORTCONDS.h index 0fa9811159..2bd3b6b291 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SORTCONDS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SORTCONDS.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SORTCONDS) public: SORTCONDS(); - virtual ~SORTCONDS(); + ~SORTCONDS(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SORTSTATE.cpp b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SORTSTATE.cpp index b05b919854..0abb681693 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SORTSTATE.cpp +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SORTSTATE.cpp @@ -82,7 +82,7 @@ namespace XLSB while(count > 0) { - m_arFRT.insert(m_arFRT.begin(), elements_.back()); + //m_arFRT.insert(m_arFRT.begin(), elements_.back()); elements_.pop_back(); count--; } diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SORTSTATE.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SORTSTATE.h index 6b9b86a924..1e7caa6b9d 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SORTSTATE.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SORTSTATE.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SORTSTATE) public: SORTSTATE(); - virtual ~SORTSTATE(); + ~SORTSTATE(); XLS::BaseObjectPtr clone(); @@ -51,7 +51,7 @@ namespace XLSB XLS::BaseObjectPtr m_BrtBeginSortState; XLS::BaseObjectPtr m_source; - std::vector m_arFRT; + //std::vector m_arFRT; XLS::BaseObjectPtr m_BrtEndSortState; }; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SPARKLINEGROUP.cpp b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SPARKLINEGROUP.cpp index 603671b786..13b84a6724 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SPARKLINEGROUP.cpp +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SPARKLINEGROUP.cpp @@ -68,7 +68,7 @@ namespace XLSB if (proc.optional()) { - m_ACUID = elements_.back(); + //m_ACUID = elements_.back(); elements_.pop_back(); } diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SPARKLINEGROUP.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SPARKLINEGROUP.h index db3160b245..2a0853b3b3 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SPARKLINEGROUP.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SPARKLINEGROUP.h @@ -41,14 +41,14 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SPARKLINEGROUP) public: SPARKLINEGROUP(); - virtual ~SPARKLINEGROUP(); + ~SPARKLINEGROUP(); XLS::BaseObjectPtr clone(); virtual const bool loadContent(XLS::BinProcessor& proc); XLS::BaseObjectPtr m_BrtBeginSparklineGroup; - XLS::BaseObjectPtr m_ACUID; + //XLS::BaseObjectPtr m_ACUID; XLS::BaseObjectPtr m_BrtBeginSparklines; std::vector m_arBrtSparkline; XLS::BaseObjectPtr m_BrtEndSparklines; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SPARKLINEGROUPS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SPARKLINEGROUPS.h index d348f200ac..3dcddf456e 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SPARKLINEGROUPS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SPARKLINEGROUPS.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SPARKLINEGROUPS) public: SPARKLINEGROUPS(); - virtual ~SPARKLINEGROUPS(); + ~SPARKLINEGROUPS(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/STYLES.cpp b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/STYLES.cpp index 0bbfef25ac..dd61aed518 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/STYLES.cpp +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/STYLES.cpp @@ -79,7 +79,7 @@ namespace XLSB while (proc.optional()) { - m_arFRT.push_back(elements_.back()); + //m_arFRT.push_back(elements_.back()); elements_.pop_back(); } } diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/STYLES.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/STYLES.h index d585e89e57..f74bdcd02a 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/STYLES.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/STYLES.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(STYLES) public: STYLES(); - virtual ~STYLES(); + ~STYLES(); XLS::BaseObjectPtr clone(); @@ -52,7 +52,7 @@ namespace XLSB XLS::BaseObjectPtr m_BrtBeginStyles; std::vector m_arACUID; std::vector m_arBrtStyle; - std::vector m_arFRT; + //std::vector m_arFRT; XLS::BaseObjectPtr m_BrtEndStyles; }; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/STYLESHEET14.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/STYLESHEET14.h index 4948b9c9c9..d28ee87efb 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/STYLESHEET14.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/STYLESHEET14.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(STYLESHEET14) public: STYLESHEET14(); - virtual ~STYLESHEET14(); + ~STYLESHEET14(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/STYLESHEET15.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/STYLESHEET15.h index efe13b88c7..58111ce797 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/STYLESHEET15.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/STYLESHEET15.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(STYLESHEET15) public: STYLESHEET15(); - virtual ~STYLESHEET15(); + ~STYLESHEET15(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SUP.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SUP.h index 5894613a77..c00de71fdb 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SUP.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SUP.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SUP) public: SUP(); - virtual ~SUP(); + ~SUP(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SUPADDIN.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SUPADDIN.h index cecc36b6ca..a0aa444913 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SUPADDIN.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SUPADDIN.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SUPADDIN) public: SUPADDIN(); - virtual ~SUPADDIN(); + ~SUPADDIN(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SUPSAME.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SUPSAME.h index 0ca4273990..e6e373709e 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SUPSAME.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SUPSAME.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SUPSAME) public: SUPSAME(); - virtual ~SUPSAME(); + ~SUPSAME(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXCHANGE.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXCHANGE.h index 77af82a3e8..4b4102b0c9 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXCHANGE.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXCHANGE.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SXCHANGE) public: SXCHANGE(); - virtual ~SXCHANGE(); + ~SXCHANGE(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXCHANGES.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXCHANGES.h index 50b77b39f0..e40fa17d1d 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXCHANGES.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXCHANGES.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SXCHANGES) public: SXCHANGES(); - virtual ~SXCHANGES(); + ~SXCHANGES(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXCONDFMT.cpp b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXCONDFMT.cpp index 748dfb491f..78b7a927cc 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXCONDFMT.cpp +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXCONDFMT.cpp @@ -72,7 +72,7 @@ namespace XLSB auto count = proc.repeated(0, 0); while(count > 0) { - m_arFRT.insert(m_arFRT.begin(), elements_.back()); + //m_arFRT.insert(m_arFRT.begin(), elements_.back()); elements_.pop_back(); count--; } diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXCONDFMT.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXCONDFMT.h index 52cb9e6f8b..c40ec94321 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXCONDFMT.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXCONDFMT.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SXCONDFMT) public: SXCONDFMT(); - virtual ~SXCONDFMT(); + ~SXCONDFMT(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXCONDFMT14.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXCONDFMT14.h index ec7f5b3c66..94c6993197 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXCONDFMT14.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXCONDFMT14.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SXCONDFMT14) public: SXCONDFMT14(); - virtual ~SXCONDFMT14(); + ~SXCONDFMT14(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXCONDFMTS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXCONDFMTS.h index cffee44e01..a73127a3af 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXCONDFMTS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXCONDFMTS.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SXCONDFMTS) public: SXCONDFMTS(); - virtual ~SXCONDFMTS(); + ~SXCONDFMTS(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXCONDFMTS14.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXCONDFMTS14.h index d4a7d6d9bf..6208a0669a 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXCONDFMTS14.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXCONDFMTS14.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SXCONDFMTS14) public: SXCONDFMTS14(); - virtual ~SXCONDFMTS14(); + ~SXCONDFMTS14(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXCRTFORMAT.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXCRTFORMAT.h index b3466ed376..a24699a3dd 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXCRTFORMAT.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXCRTFORMAT.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SXCRTFORMAT) public: SXCRTFORMAT(); - virtual ~SXCRTFORMAT(); + ~SXCRTFORMAT(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXCRTFORMATS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXCRTFORMATS.h index 1d3540101f..6b77c1d304 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXCRTFORMATS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXCRTFORMATS.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SXCRTFORMATS) public: SXCRTFORMATS(); - virtual ~SXCRTFORMATS(); + ~SXCRTFORMATS(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXDI.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXDI.h index 1b6c7e38d8..9101813b7e 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXDI.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXDI.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SXDI) public: SXDI(); - virtual ~SXDI(); + ~SXDI(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXDIS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXDIS.h index 6b7c0b657b..446c9402e7 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXDIS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXDIS.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SXDIS) public: SXDIS(); - virtual ~SXDIS(); + ~SXDIS(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXEDIT.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXEDIT.h index d4f926d6db..fc0418ac5f 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXEDIT.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXEDIT.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SXEDIT) public: SXEDIT(); - virtual ~SXEDIT(); + ~SXEDIT(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXEDITS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXEDITS.h index 715116a982..200cf1ce0f 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXEDITS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXEDITS.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SXEDITS) public: SXEDITS(); - virtual ~SXEDITS(); + ~SXEDITS(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXFILTER.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXFILTER.h index 81f9478f88..775d075c9c 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXFILTER.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXFILTER.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SXFILTER) public: SXFILTER(); - virtual ~SXFILTER(); + ~SXFILTER(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXFILTERS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXFILTERS.h index 915b200527..d0adec5f6a 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXFILTERS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXFILTERS.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SXFILTERS) public: SXFILTERS(); - virtual ~SXFILTERS(); + ~SXFILTERS(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXFORMAT.cpp b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXFORMAT.cpp index e9c10e2de8..f48e926a18 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXFORMAT.cpp +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXFORMAT.cpp @@ -72,7 +72,7 @@ namespace XLSB auto count = proc.repeated(0, 0); while(count > 0) { - m_arFRT.insert(m_arFRT.begin(), elements_.back()); + //m_arFRT.insert(m_arFRT.begin(), elements_.back()); elements_.pop_back(); count--; } diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXFORMAT.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXFORMAT.h index 20147bc774..fdcc2c3948 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXFORMAT.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXFORMAT.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SXFORMAT) public: SXFORMAT(); - virtual ~SXFORMAT(); + ~SXFORMAT(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXFORMATS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXFORMATS.h index c2f3e76c16..29de745c95 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXFORMATS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXFORMATS.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SXFORMATS) public: SXFORMATS(); - virtual ~SXFORMATS(); + ~SXFORMATS(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXLI.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXLI.h index 830ff59f28..59ee7b3685 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXLI.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXLI.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SXLI) public: SXLI(); - virtual ~SXLI(); + ~SXLI(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXLICOLS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXLICOLS.h index ba00ae03fc..6c9ac8d7bd 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXLICOLS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXLICOLS.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SXLICOLS) public: SXLICOLS(); - virtual ~SXLICOLS(); + ~SXLICOLS(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXLIRWS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXLIRWS.h index 295fdd90ff..f2c132e8b0 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXLIRWS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXLIRWS.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SXLIRWS) public: SXLIRWS(); - virtual ~SXLIRWS(); + ~SXLIRWS(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXLOCATION.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXLOCATION.h index 9a3af1f722..cd96c6fe32 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXLOCATION.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXLOCATION.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SXLOCATION) public: SXLOCATION(); - virtual ~SXLOCATION(); + ~SXLOCATION(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXPI.cpp b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXPI.cpp index 96dfb97672..87d0d378cf 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXPI.cpp +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXPI.cpp @@ -65,7 +65,7 @@ namespace XLSB auto count = proc.repeated(0, 0); while(count > 0) { - m_arFRT.insert(m_arFRT.begin(), elements_.back()); + //m_arFRT.insert(m_arFRT.begin(), elements_.back()); elements_.pop_back(); count--; } diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXPI.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXPI.h index 60ef4eb1b5..d05bf78751 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXPI.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXPI.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SXPI) public: SXPI(); - virtual ~SXPI(); + ~SXPI(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXPIS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXPIS.h index f767c5b973..ddc3d744bb 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXPIS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXPIS.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SXPIS) public: SXPIS(); - virtual ~SXPIS(); + ~SXPIS(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXTDMP.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXTDMP.h index d240dc8398..8f9d4b1dad 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXTDMP.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXTDMP.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SXTDMP) public: SXTDMP(); - virtual ~SXTDMP(); + ~SXTDMP(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXTDMPS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXTDMPS.h index 2ee3147dfa..2e387ce24d 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXTDMPS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXTDMPS.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SXTDMPS) public: SXTDMPS(); - virtual ~SXTDMPS(); + ~SXTDMPS(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXTH.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXTH.h index c978ba77bd..af608e9221 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXTH.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXTH.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SXTH) public: SXTH(); - virtual ~SXTH(); + ~SXTH(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXTHITEM.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXTHITEM.h index 39cb490442..aea1399c1e 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXTHITEM.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXTHITEM.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SXTHITEM) public: SXTHITEM(); - virtual ~SXTHITEM(); + ~SXTHITEM(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXTHITEMS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXTHITEMS.h index ba1984ee00..28d2573e46 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXTHITEMS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXTHITEMS.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SXTHITEMS) public: SXTHITEMS(); - virtual ~SXTHITEMS(); + ~SXTHITEMS(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXTHS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXTHS.h index bcebf3a870..e8d5531e13 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXTHS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXTHS.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SXTHS) public: SXTHS(); - virtual ~SXTHS(); + ~SXTHS(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXTUPLESET.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXTUPLESET.h index 5b98b7e49b..031b5896b3 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXTUPLESET.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXTUPLESET.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SXTUPLESET) public: SXTUPLESET(); - virtual ~SXTUPLESET(); + ~SXTUPLESET(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXTUPLESETDATA.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXTUPLESETDATA.h index c550f758bf..3fe70a2730 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXTUPLESETDATA.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXTUPLESETDATA.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SXTUPLESETDATA) public: SXTUPLESETDATA(); - virtual ~SXTUPLESETDATA(); + ~SXTUPLESETDATA(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXTUPLESETHEADER.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXTUPLESETHEADER.h index bb0579b3e0..2caed8b877 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXTUPLESETHEADER.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXTUPLESETHEADER.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SXTUPLESETHEADER) public: SXTUPLESETHEADER(); - virtual ~SXTUPLESETHEADER(); + ~SXTUPLESETHEADER(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXTUPLESETROW.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXTUPLESETROW.h index 20cb9c1eed..fa609309af 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXTUPLESETROW.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXTUPLESETROW.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SXTUPLESETROW) public: SXTUPLESETROW(); - virtual ~SXTUPLESETROW(); + ~SXTUPLESETROW(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXVD.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXVD.h index d304d2ea57..ea6125a070 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXVD.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXVD.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SXVD) public: SXVD(); - virtual ~SXVD(); + ~SXVD(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXVDS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXVDS.h index 31f15eddb4..1634c048f9 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXVDS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXVDS.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SXVDS) public: SXVDS(); - virtual ~SXVDS(); + ~SXVDS(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXVI.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXVI.h index 746d664efa..fbfad1cd5c 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXVI.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXVI.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SXVI) public: SXVI(); - virtual ~SXVI(); + ~SXVI(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXVIEW14.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXVIEW14.h index 3319b824df..85ffafb6c8 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXVIEW14.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXVIEW14.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SXVIEW14) public: SXVIEW14(); - virtual ~SXVIEW14(); + ~SXVIEW14(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXVIEW16.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXVIEW16.h index edf47d781d..ae9f420574 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXVIEW16.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXVIEW16.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SXVIEW16) public: SXVIEW16(); - virtual ~SXVIEW16(); + ~SXVIEW16(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXVIS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXVIS.h index b625aa8e8c..9c8ae039b1 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXVIS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/SXVIS.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(SXVIS) public: SXVIS(); - virtual ~SXVIS(); + ~SXVIS(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/TABLE.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/TABLE.h index 5d1dd0de3d..a573353603 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/TABLE.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/TABLE.h @@ -41,13 +41,13 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(TABLE) public: TABLE(); - virtual ~TABLE(); + ~TABLE(); XLS::BaseObjectPtr clone(); virtual const bool loadContent(XLS::BinProcessor& proc); - XLS::BaseObjectPtr m_ACUID; + //XLS::BaseObjectPtr m_ACUID; XLS::BaseObjectPtr m_BrtBeginList; XLS::BaseObjectPtr m_AUTOFILTER; XLS::BaseObjectPtr m_SORTSTATE; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/TABLECELL.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/TABLECELL.h index ab20de66c5..811a0e4781 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/TABLECELL.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/TABLECELL.h @@ -41,16 +41,18 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(TABLECELL) public: TABLECELL(); - virtual ~TABLECELL(); + ~TABLECELL(); XLS::BaseObjectPtr clone(); virtual const bool loadContent(XLS::BinProcessor& proc); - XLS::BaseObjectPtr m_BrtTable; - XLS::BaseObjectPtr m_CELLMETA; - XLS::BaseObjectPtr m_source; - _INT32 m_Col; + static const XLS::ElementType type = XLS::typeTABLECELL; + + XLS::BaseObjectPtr m_BrtTable; + XLS::BaseObjectPtr m_CELLMETA; + XLS::BaseObjectPtr m_source; + _INT32 m_Col; }; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/TABLESLICERCACHE.cpp b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/TABLESLICERCACHE.cpp index 81c45b86e7..e33159378e 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/TABLESLICERCACHE.cpp +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/TABLESLICERCACHE.cpp @@ -74,7 +74,7 @@ namespace XLSB while(count > 0) { - m_arFRT.insert(m_arFRT.begin(), elements_.back()); + //m_arFRT.insert(m_arFRT.begin(), elements_.back()); elements_.pop_back(); count--; } diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/TABLESLICERCACHE.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/TABLESLICERCACHE.h index b103b2de13..637260b722 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/TABLESLICERCACHE.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/TABLESLICERCACHE.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(TABLESLICERCACHE) public: TABLESLICERCACHE(); - virtual ~TABLESLICERCACHE(); + ~TABLESLICERCACHE(); XLS::BaseObjectPtr clone(); @@ -49,7 +49,7 @@ namespace XLSB XLS::BaseObjectPtr m_BrtFRTBegin; XLS::BaseObjectPtr m_BrtBeginTableSlicerCache; - std::vector m_arFRT; + //std::vector m_arFRT; XLS::BaseObjectPtr m_BrtEndTableSlicerCache; XLS::BaseObjectPtr m_BrtFRTEnd; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/TABLESLICERCACHEID.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/TABLESLICERCACHEID.h index fc604b3dc6..89eef6c72c 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/TABLESLICERCACHEID.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/TABLESLICERCACHEID.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(TABLESLICERCACHEID) public: TABLESLICERCACHEID(); - virtual ~TABLESLICERCACHEID(); + ~TABLESLICERCACHEID(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/TABLESLICERCACHEIDS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/TABLESLICERCACHEIDS.h index a98eddc098..a9f8cf4a6c 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/TABLESLICERCACHEIDS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/TABLESLICERCACHEIDS.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(TABLESLICERCACHEIDS) public: TABLESLICERCACHEIDS(); - virtual ~TABLESLICERCACHEIDS(); + ~TABLESLICERCACHEIDS(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/TABLESLICEREX.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/TABLESLICEREX.h index d31d3b9a12..4b656b078e 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/TABLESLICEREX.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/TABLESLICEREX.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(TABLESLICEREX) public: TABLESLICEREX(); - virtual ~TABLESLICEREX(); + ~TABLESLICEREX(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/TABLESLICERSEX.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/TABLESLICERSEX.h index f730b1557b..0e614517a7 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/TABLESLICERSEX.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/TABLESLICERSEX.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(TABLESLICERSEX) public: TABLESLICERSEX(); - virtual ~TABLESLICERSEX(); + ~TABLESLICERSEX(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/TABLESTYLE.cpp b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/TABLESTYLE.cpp index ea1b68a9cf..e623c7ebf4 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/TABLESTYLE.cpp +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/TABLESTYLE.cpp @@ -58,7 +58,7 @@ namespace XLSB { if (proc.optional()) { - m_ACUID = elements_.back(); + //m_ACUID = elements_.back(); elements_.pop_back(); } diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/TABLESTYLE.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/TABLESTYLE.h index a2d7f7b49a..d35b471d88 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/TABLESTYLE.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/TABLESTYLE.h @@ -41,14 +41,14 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(TABLESTYLE) public: TABLESTYLE(); - virtual ~TABLESTYLE(); + ~TABLESTYLE(); XLS::BaseObjectPtr clone(); virtual const bool loadContent(XLS::BinProcessor& proc); XLS::BaseObjectPtr m_BrtBeginTableStyle; - XLS::BaseObjectPtr m_ACUID; + //XLS::BaseObjectPtr m_ACUID; std::vector m_arBrtTableStyleElement; XLS::BaseObjectPtr m_BrtEndTableStyle; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/TABLESTYLES.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/TABLESTYLES.h index bd79c3b029..b490551c29 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/TABLESTYLES.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/TABLESTYLES.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(TABLESTYLES) public: TABLESTYLES(); - virtual ~TABLESTYLES(); + ~TABLESTYLES(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/TABLE_bu.cpp b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/TABLE_bu.cpp index 09c0410a4b..080dc7af62 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/TABLE_bu.cpp +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/TABLE_bu.cpp @@ -63,7 +63,7 @@ namespace XLSB { if (proc.optional()) { - m_ACUID = elements_.back(); + //m_ACUID = elements_.back(); elements_.pop_back(); } diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/TEXTPR15.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/TEXTPR15.h index bfc53d30fe..6e6d6dbf1f 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/TEXTPR15.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/TEXTPR15.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(TEXTPR15) public: TEXTPR15(); - virtual ~TEXTPR15(); + ~TEXTPR15(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/TIMELINESTYLE.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/TIMELINESTYLE.h index f3c7fde2e7..112b9df2f4 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/TIMELINESTYLE.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/TIMELINESTYLE.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(TIMELINESTYLE) public: TIMELINESTYLE(); - virtual ~TIMELINESTYLE(); + ~TIMELINESTYLE(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/TIMELINESTYLES.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/TIMELINESTYLES.h index d89bc8a751..bbda846f1c 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/TIMELINESTYLES.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/TIMELINESTYLES.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(TIMELINESTYLES) public: TIMELINESTYLES(); - virtual ~TIMELINESTYLES(); + ~TIMELINESTYLES(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/USERCSVIEW.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/USERCSVIEW.h index a719a9a32a..3fa26a85b3 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/USERCSVIEW.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/USERCSVIEW.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(USERCSVIEW) public: USERCSVIEW(); - virtual ~USERCSVIEW(); + ~USERCSVIEW(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/USERCSVIEWS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/USERCSVIEWS.h index f1556f7936..9297a419c7 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/USERCSVIEWS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/USERCSVIEWS.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(USERCSVIEWS) public: USERCSVIEWS(); - virtual ~USERCSVIEWS(); + ~USERCSVIEWS(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/WEBPUBITEM.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/WEBPUBITEM.h index c0c65ae0f0..55e55271d9 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/WEBPUBITEM.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/WEBPUBITEM.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(WEBPUBITEM) public: WEBPUBITEM(); - virtual ~WEBPUBITEM(); + ~WEBPUBITEM(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/WEBPUBITEMS.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/WEBPUBITEMS.h index fa3a00a30f..cf1952eecd 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/WEBPUBITEMS.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/WEBPUBITEMS.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(WEBPUBITEMS) public: WEBPUBITEMS(); - virtual ~WEBPUBITEMS(); + ~WEBPUBITEMS(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/WSVIEW2.cpp b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/WSVIEW2.cpp index afec41a662..b67b88595a 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/WSVIEW2.cpp +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/WSVIEW2.cpp @@ -59,7 +59,7 @@ namespace XLSB { if (proc.optional()) { - m_ACUID = elements_.back(); + //m_ACUID = elements_.back(); elements_.pop_back(); } @@ -88,7 +88,7 @@ namespace XLSB while(count > 0) { - m_arFRT.insert(m_arFRT.begin(), elements_.back()); + //m_arFRT.insert(m_arFRT.begin(), elements_.back()); elements_.pop_back(); count--; } diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/WSVIEW2.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/WSVIEW2.h index 72530aa3be..b5d88a986a 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/WSVIEW2.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/WSVIEW2.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(WSVIEW2) public: WSVIEW2(); - virtual ~WSVIEW2(); + ~WSVIEW2(); XLS::BaseObjectPtr clone(); @@ -49,11 +49,11 @@ namespace XLSB static const XLS::ElementType type = XLS::typeWSVIEW2; - XLS::BaseObjectPtr m_ACUID; + //XLS::BaseObjectPtr m_ACUID; XLS::BaseObjectPtr m_BrtBeginWsView; XLS::BaseObjectPtr m_BrtPane; std::vector m_arBrtSel; - std::vector m_arFRT; + //std::vector m_arFRT; XLS::BaseObjectPtr m_BrtEndWsView; }; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/WSVIEWS2.cpp b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/WSVIEWS2.cpp index 33d21f16ce..e910bc1a55 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/WSVIEWS2.cpp +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/WSVIEWS2.cpp @@ -76,7 +76,7 @@ namespace XLSB while(count > 0) { - m_arFRT.insert(m_arFRT.begin(), elements_.back()); + //m_arFRT.insert(m_arFRT.begin(), elements_.back()); elements_.pop_back(); count--; } diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/WSVIEWS2.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/WSVIEWS2.h index b55ec4f2e6..33a919bd54 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/WSVIEWS2.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/WSVIEWS2.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(WSVIEWS2) public: WSVIEWS2(); - virtual ~WSVIEWS2(); + ~WSVIEWS2(); XLS::BaseObjectPtr clone(); @@ -51,7 +51,7 @@ namespace XLSB XLS::BaseObjectPtr m_BrtBeginWsViews; std::vector m_arWSVIEW2; - std::vector m_arFRT; + //std::vector m_arFRT; XLS::BaseObjectPtr m_BrtEndWsViews; }; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/uCFVO.cpp b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/uCFVO.cpp index 41ff9b3734..04f55a6d25 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/uCFVO.cpp +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/uCFVO.cpp @@ -65,7 +65,7 @@ namespace XLSB while(count > 0) { - m_arFRT.insert(m_arFRT.begin(), elements_.back()); + //m_arFRT.insert(m_arFRT.begin(), elements_.back()); elements_.pop_back(); count--; } diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/uCFVO.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/uCFVO.h index 2c4e43d140..0ca186297a 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/uCFVO.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/uCFVO.h @@ -43,7 +43,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(uCFVO) public: uCFVO(); - virtual ~uCFVO(); + ~uCFVO(); XLS::BaseObjectPtr clone(); @@ -52,7 +52,7 @@ namespace XLSB static const XLS::ElementType type = XLS::typeuCFVO; XLS::BaseObjectPtr m_BrtCFVO; - std::vector m_arFRT; + //std::vector m_arFRT; }; diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/uCFVO14.cpp b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/uCFVO14.cpp index caba31826c..cded602e46 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/uCFVO14.cpp +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/uCFVO14.cpp @@ -65,7 +65,7 @@ namespace XLSB while(count > 0) { - m_arFRT.insert(m_arFRT.begin(), elements_.back()); + //m_arFRT.insert(m_arFRT.begin(), elements_.back()); elements_.pop_back(); count--; } diff --git a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/uCFVO14.h b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/uCFVO14.h index ffa83ab5fc..233e59dd97 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/uCFVO14.h +++ b/Common/DocxFormat/Source/XlsbFormat/Biff12_unions/uCFVO14.h @@ -41,7 +41,7 @@ namespace XLSB BASE_OBJECT_DEFINE_CLASS_NAME(uCFVO14) public: uCFVO14(); - virtual ~uCFVO14(); + ~uCFVO14(); XLS::BaseObjectPtr clone(); @@ -50,7 +50,7 @@ namespace XLSB static const XLS::ElementType type = XLS::typeuCFVO14; XLS::BaseObjectPtr m_BrtCFVO14; - std::vector m_arFRT; + //std::vector m_arFRT; }; diff --git a/Common/DocxFormat/Source/XlsbFormat/ChartSheetStream.h b/Common/DocxFormat/Source/XlsbFormat/ChartSheetStream.h index 7db1e0f301..a3b1168583 100644 --- a/Common/DocxFormat/Source/XlsbFormat/ChartSheetStream.h +++ b/Common/DocxFormat/Source/XlsbFormat/ChartSheetStream.h @@ -48,14 +48,14 @@ namespace XLSB class StreamCacheReader; class ChartSheetStream; - typedef std::shared_ptr ChartSheetStreamPtr; + typedef boost::shared_ptr ChartSheetStreamPtr; class ChartSheetStream: public XLS::CompositeObject { BASE_OBJECT_DEFINE_CLASS_NAME(ChartSheetStream) public: ChartSheetStream(); - virtual ~ChartSheetStream(); + ~ChartSheetStream(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/CommentsStream.h b/Common/DocxFormat/Source/XlsbFormat/CommentsStream.h index cc15a79714..24e9ccf240 100644 --- a/Common/DocxFormat/Source/XlsbFormat/CommentsStream.h +++ b/Common/DocxFormat/Source/XlsbFormat/CommentsStream.h @@ -48,14 +48,14 @@ namespace XLSB class StreamCacheReader; class CommentsStream; - typedef std::shared_ptr CommentsStreamPtr; + typedef boost::shared_ptr CommentsStreamPtr; class CommentsStream: public XLS::CompositeObject { BASE_OBJECT_DEFINE_CLASS_NAME(CommentsStream) public: CommentsStream(); - virtual ~CommentsStream(); + ~CommentsStream(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/ConnectionsStream.h b/Common/DocxFormat/Source/XlsbFormat/ConnectionsStream.h index 1521de7e2d..fdb491ea69 100644 --- a/Common/DocxFormat/Source/XlsbFormat/ConnectionsStream.h +++ b/Common/DocxFormat/Source/XlsbFormat/ConnectionsStream.h @@ -46,14 +46,14 @@ namespace XLSB class StreamCacheReader; class ConnectionsStream; - typedef std::shared_ptr ConnectionsStreamPtr; + typedef boost::shared_ptr ConnectionsStreamPtr; class ConnectionsStream: public XLS::CompositeObject { BASE_OBJECT_DEFINE_CLASS_NAME(ConnectionsStream) public: ConnectionsStream(); - virtual ~ConnectionsStream(); + ~ConnectionsStream(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/ExternalLinkStream.h b/Common/DocxFormat/Source/XlsbFormat/ExternalLinkStream.h index eb7e699c96..912a5c9cbb 100644 --- a/Common/DocxFormat/Source/XlsbFormat/ExternalLinkStream.h +++ b/Common/DocxFormat/Source/XlsbFormat/ExternalLinkStream.h @@ -48,14 +48,14 @@ namespace XLSB class StreamCacheReader; class ExternalLinkStream; - typedef std::shared_ptr ExternalLinkStreamPtr; + typedef boost::shared_ptr ExternalLinkStreamPtr; class ExternalLinkStream: public XLS::CompositeObject { BASE_OBJECT_DEFINE_CLASS_NAME(ExternalLinkStream) public: ExternalLinkStream(); - virtual ~ExternalLinkStream(); + ~ExternalLinkStream(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/PivotCacheDefStream.cpp b/Common/DocxFormat/Source/XlsbFormat/PivotCacheDefStream.cpp index 8f9c778690..7421ad6b35 100644 --- a/Common/DocxFormat/Source/XlsbFormat/PivotCacheDefStream.cpp +++ b/Common/DocxFormat/Source/XlsbFormat/PivotCacheDefStream.cpp @@ -81,7 +81,7 @@ const bool PivotCacheDefStream::loadContent(BinProcessor& proc) { if (proc.optional()) { - m_ACUID = elements_.back(); + //m_ACUID = elements_.back(); elements_.pop_back(); } }break; diff --git a/Common/DocxFormat/Source/XlsbFormat/PivotCacheDefStream.h b/Common/DocxFormat/Source/XlsbFormat/PivotCacheDefStream.h index ea1634ac59..692ddf2f6a 100644 --- a/Common/DocxFormat/Source/XlsbFormat/PivotCacheDefStream.h +++ b/Common/DocxFormat/Source/XlsbFormat/PivotCacheDefStream.h @@ -48,20 +48,20 @@ namespace XLSB class StreamCacheReader; class PivotCacheDefStream; - typedef std::shared_ptr PivotCacheDefStreamPtr; + typedef boost::shared_ptr PivotCacheDefStreamPtr; class PivotCacheDefStream: public XLS::CompositeObject { BASE_OBJECT_DEFINE_CLASS_NAME(PivotCacheDefStream) public: PivotCacheDefStream(); - virtual ~PivotCacheDefStream(); + ~PivotCacheDefStream(); XLS::BaseObjectPtr clone(); virtual const bool loadContent(XLS::BinProcessor& proc); - XLS::BaseObjectPtr m_ACUID; + //XLS::BaseObjectPtr m_ACUID; XLS::BaseObjectPtr m_BrtBeginPivotCacheDef; XLS::BaseObjectPtr m_PCDSOURCE; XLS::BaseObjectPtr m_PCDFIELDS; diff --git a/Common/DocxFormat/Source/XlsbFormat/PivotCacheRecordsStream.h b/Common/DocxFormat/Source/XlsbFormat/PivotCacheRecordsStream.h index 42ac004c63..b1740c2ecd 100644 --- a/Common/DocxFormat/Source/XlsbFormat/PivotCacheRecordsStream.h +++ b/Common/DocxFormat/Source/XlsbFormat/PivotCacheRecordsStream.h @@ -48,14 +48,14 @@ namespace XLSB class StreamCacheReader; class PivotCacheRecordsStream; - typedef std::shared_ptr PivotCacheRecordsStreamPtr; + typedef boost::shared_ptr PivotCacheRecordsStreamPtr; class PivotCacheRecordsStream: public XLS::CompositeObject { BASE_OBJECT_DEFINE_CLASS_NAME(PivotCacheRecordsStream) public: PivotCacheRecordsStream(); - virtual ~PivotCacheRecordsStream(); + ~PivotCacheRecordsStream(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/PivotTableStream.cpp b/Common/DocxFormat/Source/XlsbFormat/PivotTableStream.cpp index 4063e7643e..3edad9ad16 100644 --- a/Common/DocxFormat/Source/XlsbFormat/PivotTableStream.cpp +++ b/Common/DocxFormat/Source/XlsbFormat/PivotTableStream.cpp @@ -87,7 +87,7 @@ const bool PivotTableStream::loadContent(BinProcessor& proc) { if (proc.optional()) { - m_ACUID = elements_.back(); + //m_ACUID = elements_.back(); elements_.pop_back(); } }break; diff --git a/Common/DocxFormat/Source/XlsbFormat/PivotTableStream.h b/Common/DocxFormat/Source/XlsbFormat/PivotTableStream.h index e7cb8270d9..448f047d8a 100644 --- a/Common/DocxFormat/Source/XlsbFormat/PivotTableStream.h +++ b/Common/DocxFormat/Source/XlsbFormat/PivotTableStream.h @@ -48,20 +48,20 @@ namespace XLSB class StreamCacheReader; class PivotTableStream; - typedef std::shared_ptr PivotTableStreamPtr; + typedef boost::shared_ptr PivotTableStreamPtr; class PivotTableStream: public XLS::CompositeObject { BASE_OBJECT_DEFINE_CLASS_NAME(PivotTableStream) public: PivotTableStream(); - virtual ~PivotTableStream(); + ~PivotTableStream(); XLS::BaseObjectPtr clone(); virtual const bool loadContent(XLS::BinProcessor& proc); - XLS::BaseObjectPtr m_ACUID; + //XLS::BaseObjectPtr m_ACUID; XLS::BaseObjectPtr m_BrtBeginSXView; XLS::BaseObjectPtr m_SXLOCATION; XLS::BaseObjectPtr m_SXVDS; diff --git a/Common/DocxFormat/Source/XlsbFormat/QueryTableStream.h b/Common/DocxFormat/Source/XlsbFormat/QueryTableStream.h index 1ace51eb93..898f0ef1d9 100644 --- a/Common/DocxFormat/Source/XlsbFormat/QueryTableStream.h +++ b/Common/DocxFormat/Source/XlsbFormat/QueryTableStream.h @@ -48,14 +48,14 @@ namespace XLSB class StreamCacheReader; class QueryTableStream; - typedef std::shared_ptr QueryTableStreamPtr; + typedef boost::shared_ptr QueryTableStreamPtr; class QueryTableStream: public XLS::CompositeObject { BASE_OBJECT_DEFINE_CLASS_NAME(QueryTableStream) public: QueryTableStream(); - virtual ~QueryTableStream(); + ~QueryTableStream(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/SharedStringsStream.h b/Common/DocxFormat/Source/XlsbFormat/SharedStringsStream.h index bc3e135581..baea659025 100644 --- a/Common/DocxFormat/Source/XlsbFormat/SharedStringsStream.h +++ b/Common/DocxFormat/Source/XlsbFormat/SharedStringsStream.h @@ -48,14 +48,14 @@ namespace XLSB class StreamCacheReader; class SharedStringsStream; - typedef std::shared_ptr SharedStringsStreamPtr; + typedef boost::shared_ptr SharedStringsStreamPtr; class SharedStringsStream: public XLS::CompositeObject { BASE_OBJECT_DEFINE_CLASS_NAME(SharedStringsStream) public: SharedStringsStream(); - virtual ~SharedStringsStream(); + ~SharedStringsStream(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/SlicerCachesStream.h b/Common/DocxFormat/Source/XlsbFormat/SlicerCachesStream.h index 4fb65ad9c3..d286436e6f 100644 --- a/Common/DocxFormat/Source/XlsbFormat/SlicerCachesStream.h +++ b/Common/DocxFormat/Source/XlsbFormat/SlicerCachesStream.h @@ -47,14 +47,14 @@ namespace XLSB class StreamCacheReader; class SlicerCachesStream; - typedef std::shared_ptr SlicerCachesStreamPtr; + typedef boost::shared_ptr SlicerCachesStreamPtr; class SlicerCachesStream: public XLS::CompositeObject { BASE_OBJECT_DEFINE_CLASS_NAME(SlicerCachesStream) public: SlicerCachesStream(); - virtual ~SlicerCachesStream(); + ~SlicerCachesStream(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/SlicersStream.h b/Common/DocxFormat/Source/XlsbFormat/SlicersStream.h index 5a19488aee..def3ad8022 100644 --- a/Common/DocxFormat/Source/XlsbFormat/SlicersStream.h +++ b/Common/DocxFormat/Source/XlsbFormat/SlicersStream.h @@ -47,14 +47,14 @@ namespace XLSB class StreamCacheReader; class SlicersStream; - typedef std::shared_ptr SlicersStreamPtr; + typedef boost::shared_ptr SlicersStreamPtr; class SlicersStream: public XLS::CompositeObject { BASE_OBJECT_DEFINE_CLASS_NAME(SlicersStream) public: SlicersStream(); - virtual ~SlicersStream(); + ~SlicersStream(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/StylesStream.h b/Common/DocxFormat/Source/XlsbFormat/StylesStream.h index cc572d420f..17a3dd1b4e 100644 --- a/Common/DocxFormat/Source/XlsbFormat/StylesStream.h +++ b/Common/DocxFormat/Source/XlsbFormat/StylesStream.h @@ -48,14 +48,14 @@ namespace XLSB class StreamCacheReader; class StylesStream; - typedef std::shared_ptr StylesStreamPtr; + typedef boost::shared_ptr StylesStreamPtr; class StylesStream: public XLS::CompositeObject { BASE_OBJECT_DEFINE_CLASS_NAME(StylesStream) public: StylesStream(); - virtual ~StylesStream(); + ~StylesStream(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/TableStream.h b/Common/DocxFormat/Source/XlsbFormat/TableStream.h index 451bf8f18a..46bda153df 100644 --- a/Common/DocxFormat/Source/XlsbFormat/TableStream.h +++ b/Common/DocxFormat/Source/XlsbFormat/TableStream.h @@ -48,14 +48,14 @@ namespace XLSB class StreamCacheReader; class TableStream; - typedef std::shared_ptr TableStreamPtr; + typedef boost::shared_ptr TableStreamPtr; class TableStream: public XLS::CompositeObject { BASE_OBJECT_DEFINE_CLASS_NAME(TableStream) public: TableStream(); - virtual ~TableStream(); + ~TableStream(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/WorkBookStream.h b/Common/DocxFormat/Source/XlsbFormat/WorkBookStream.h index b0299a23a6..3a20ccd033 100644 --- a/Common/DocxFormat/Source/XlsbFormat/WorkBookStream.h +++ b/Common/DocxFormat/Source/XlsbFormat/WorkBookStream.h @@ -48,14 +48,14 @@ namespace XLSB class StreamCacheReader; class WorkBookStream; - typedef std::shared_ptr WorkBookStreamPtr; + typedef boost::shared_ptr WorkBookStreamPtr; class WorkBookStream: public XLS::CompositeObject { BASE_OBJECT_DEFINE_CLASS_NAME(WorkBookStream) public: WorkBookStream(); - virtual ~WorkBookStream(); + ~WorkBookStream(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/WorkSheetStream.h b/Common/DocxFormat/Source/XlsbFormat/WorkSheetStream.h index ab98f8e235..7a8eeb9c0a 100644 --- a/Common/DocxFormat/Source/XlsbFormat/WorkSheetStream.h +++ b/Common/DocxFormat/Source/XlsbFormat/WorkSheetStream.h @@ -48,14 +48,14 @@ namespace XLSB class StreamCacheReader; class WorkSheetStream; - typedef std::shared_ptr WorkSheetStreamPtr; + typedef boost::shared_ptr WorkSheetStreamPtr; class WorkSheetStream: public XLS::CompositeObject { BASE_OBJECT_DEFINE_CLASS_NAME(WorkSheetStream) public: WorkSheetStream(); - virtual ~WorkSheetStream(); + ~WorkSheetStream(); XLS::BaseObjectPtr clone(); diff --git a/Common/DocxFormat/Source/XlsbFormat/Xlsb.cpp b/Common/DocxFormat/Source/XlsbFormat/Xlsb.cpp index 2b5c78d8bd..6cfaba1795 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Xlsb.cpp +++ b/Common/DocxFormat/Source/XlsbFormat/Xlsb.cpp @@ -62,7 +62,7 @@ void OOX::Spreadsheet::CXlsb::init() workbook_code_page = XLS::WorkbookStreamObject::DefaultCodePage; xls_global_info = boost::shared_ptr(new XLS::GlobalWorkbookInfo(workbook_code_page, nullptr)); xls_global_info->Version = 0x0800; - m_binaryReader = std::make_shared(); + m_binaryReader = boost::shared_ptr(new NSBinPptxRW::CBinaryFileReader); } bool OOX::Spreadsheet::CXlsb::ReadBin(const CPath& oFilePath, XLS::BaseObject* objStream) { @@ -81,7 +81,10 @@ bool OOX::Spreadsheet::CXlsb::ReadBin(const CPath& oFilePath, XLS::BaseObject* o XLS::StreamCacheReaderPtr reader(new XLS::BinaryStreamCacheReader(m_binaryReader, xls_global_info)); XLS::BinReaderProcessor proc(reader, objStream, true); proc.mandatory(*objStream); + delete[] m_pStream; + //reader.reset(); + return true; } @@ -154,18 +157,20 @@ void OOX::Spreadsheet::CXlsb::ReadSheetData() m_binaryReader->Init(m_pStream, 0, dwRead); - std::vector shared_formulas_locations; - XLSB::CELLTABLE cell_table_temlate(shared_formulas_locations); + XLS::BaseObjectPtr cell_table_temlate = XLS::BaseObjectPtr(new XLSB::CELLTABLE()); XLS::StreamCacheReaderPtr reader(new XLS::BinaryStreamCacheReader(m_binaryReader, xls_global_info)); - XLS::BinReaderProcessor proc(reader, &cell_table_temlate, true); + XLS::BinReaderProcessor proc(reader, cell_table_temlate.get(), true); proc.SetRecordPosition(dataPosition); - proc.mandatory(cell_table_temlate); - - worksheet->m_oSheetData->fromBin(cell_table_temlate); + proc.mandatory(*cell_table_temlate.get()); delete[] m_pStream; + + //auto base = boost::static_pointer_cast(cell_table_temlate); + worksheet->m_oSheetData->fromBin(cell_table_temlate); + //cell_table_temlate.reset(); + //reader.reset(); } } void OOX::Spreadsheet::CXlsb::PrepareTableFormula() diff --git a/Common/DocxFormat/Source/XlsbFormat/Xlsb.h b/Common/DocxFormat/Source/XlsbFormat/Xlsb.h index 3a982c9a8f..a9b1ad9717 100644 --- a/Common/DocxFormat/Source/XlsbFormat/Xlsb.h +++ b/Common/DocxFormat/Source/XlsbFormat/Xlsb.h @@ -59,7 +59,7 @@ namespace OOX { init(); } - virtual ~CXlsb(); + ~CXlsb(); bool ReadBin(const CPath& oFilePath, XLS::BaseObject* objStream); XLS::GlobalWorkbookInfo* GetGlobalinfo(); @@ -72,7 +72,7 @@ namespace OOX void init(); XLS::GlobalWorkbookInfoPtr xls_global_info; - std::shared_ptr m_binaryReader; + boost::shared_ptr m_binaryReader; unsigned short workbook_code_page; diff --git a/Common/DocxFormat/Source/XlsxFormat/Comments/Comments.h b/Common/DocxFormat/Source/XlsxFormat/Comments/Comments.h index 9c2151ecb6..2912d66f64 100644 --- a/Common/DocxFormat/Source/XlsxFormat/Comments/Comments.h +++ b/Common/DocxFormat/Source/XlsxFormat/Comments/Comments.h @@ -371,7 +371,7 @@ namespace OOX CXlsb* xlsb = dynamic_cast(File::m_pMainDocument); if (xlsb) { - XLSB::CommentsStreamPtr commentsStream = std::make_shared(); + XLSB::CommentsStreamPtr commentsStream(new XLSB::CommentsStream); xlsb->ReadBin(oPath, commentsStream.get()); @@ -387,6 +387,8 @@ namespace OOX m_oCommentList = ptr->m_COMMENTLIST; } } + + //commentsStream.reset(); } } virtual void read(const CPath& oPath) diff --git a/Common/DocxFormat/Source/XlsxFormat/ExternalLinks/ExternalLinks.h b/Common/DocxFormat/Source/XlsxFormat/ExternalLinks/ExternalLinks.h index 7fa814b72f..2753449feb 100644 --- a/Common/DocxFormat/Source/XlsxFormat/ExternalLinks/ExternalLinks.h +++ b/Common/DocxFormat/Source/XlsxFormat/ExternalLinks/ExternalLinks.h @@ -1591,7 +1591,7 @@ namespace OOX CXlsb* xlsb = dynamic_cast(File::m_pMainDocument); if (xlsb) { - XLSB::ExternalLinkStreamPtr externalLinkStreamStream = std::make_shared(); + XLSB::ExternalLinkStreamPtr externalLinkStreamStream(new XLSB::ExternalLinkStream); xlsb->ReadBin(oPath, externalLinkStreamStream.get()); @@ -1622,6 +1622,7 @@ namespace OOX } } + //externalLinkStreamStream.reset(); } } virtual void read(const CPath& oPath) diff --git a/Common/DocxFormat/Source/XlsxFormat/Pivot/Pivots.cpp b/Common/DocxFormat/Source/XlsxFormat/Pivot/Pivots.cpp index fa2d3cadd6..d002bf77b7 100644 --- a/Common/DocxFormat/Source/XlsxFormat/Pivot/Pivots.cpp +++ b/Common/DocxFormat/Source/XlsxFormat/Pivot/Pivots.cpp @@ -129,22 +129,25 @@ namespace OOX namespace Spreadsheet { - struct NullDeleter {template void operator()(T*) {} }; + //struct NullDeleter {template void operator()(T*) {} }; void CPivotTableFile::readBin(const CPath& oPath) { CXlsb* xlsb = dynamic_cast(File::m_pMainDocument); if (xlsb) { - XLSB::PivotTableStreamPtr pivotTableStream = std::make_shared(); + XLS::BaseObjectPtr pivotTableStream(new XLSB::PivotTableStream()); + //XLSB::PivotTableStreamPtr pivotTableStream = std::make_shared(); xlsb->ReadBin(oPath, pivotTableStream.get()); if (pivotTableStream != nullptr) { - XLS::BaseObjectPtr ptr(static_cast(pivotTableStream.get()), NullDeleter()); + //XLS::BaseObjectPtr ptr(static_cast(pivotTableStream.get()), NullDeleter()); //XLS::BaseObjectPtr ptr = boost::make_shared(static_cast(pivotTableStream.get())); - m_oPivotTableDefinition = ptr; + m_oPivotTableDefinition = pivotTableStream; } + + //pivotTableStream.reset(); } } @@ -2170,16 +2173,18 @@ xmlns:xr16=\"http://schemas.microsoft.com/office/spreadsheetml/2017/revision16\" CXlsb* xlsb = dynamic_cast(File::m_pMainDocument); if (xlsb) { - XLSB::PivotCacheDefStreamPtr pivotCacheDefStream = std::make_shared(); + XLS::BaseObjectPtr pivotCacheDefStream(new XLSB::PivotCacheDefStream()); xlsb->ReadBin(oPath, pivotCacheDefStream.get()); if (pivotCacheDefStream != nullptr) { - XLS::BaseObjectPtr ptr(static_cast(pivotCacheDefStream.get()), NullDeleter()); + //XLS::BaseObjectPtr ptr(static_cast(pivotCacheDefStream.get()), NullDeleter()); //XLS::BaseObjectPtr ptr = boost::shared_ptr(static_cast(pivotCacheDefStream.get())); - m_oPivotCashDefinition = ptr; + m_oPivotCashDefinition = pivotCacheDefStream; } + + //pivotCacheDefStream.reset(); } } @@ -4260,7 +4265,7 @@ xmlns:xr16=\"http://schemas.microsoft.com/office/spreadsheetml/2017/revision16\" CXlsb* xlsb = dynamic_cast(File::m_pMainDocument); if (xlsb) { - XLSB::PivotCacheRecordsStreamPtr pivotCacheRecordsStream = std::make_shared(); + XLSB::PivotCacheRecordsStreamPtr pivotCacheRecordsStream(new XLSB::PivotCacheRecordsStream); xlsb->ReadBin(oPath, pivotCacheRecordsStream.get()); @@ -4269,6 +4274,8 @@ xmlns:xr16=\"http://schemas.microsoft.com/office/spreadsheetml/2017/revision16\" if (pivotCacheRecordsStream->m_PIVOTCACHERECORDS != nullptr) m_oPivotCacheRecords = pivotCacheRecordsStream->m_PIVOTCACHERECORDS; } + + //pivotCacheRecordsStream.reset(); } } void CPivotCacheRecordsFile::read(const CPath& oRootPath, const CPath& oPath) diff --git a/Common/DocxFormat/Source/XlsxFormat/SharedStrings/SharedStrings.h b/Common/DocxFormat/Source/XlsxFormat/SharedStrings/SharedStrings.h index 856ae95731..39c746d184 100644 --- a/Common/DocxFormat/Source/XlsxFormat/SharedStrings/SharedStrings.h +++ b/Common/DocxFormat/Source/XlsxFormat/SharedStrings/SharedStrings.h @@ -83,7 +83,7 @@ namespace OOX CXlsb* xlsb = dynamic_cast(File::m_pMainDocument); if (xlsb) { - XLSB::SharedStringsStreamPtr sharedStringsStream = std::make_shared(); + XLSB::SharedStringsStreamPtr sharedStringsStream(new XLSB::SharedStringsStream); xlsb->ReadBin(oPath, sharedStringsStream.get()); @@ -109,6 +109,8 @@ namespace OOX } } + + //sharedStringsStream.reset(); } } diff --git a/Common/DocxFormat/Source/XlsxFormat/Slicer/Slicer.cpp b/Common/DocxFormat/Source/XlsxFormat/Slicer/Slicer.cpp index d6fc293912..fe0245e58c 100644 --- a/Common/DocxFormat/Source/XlsxFormat/Slicer/Slicer.cpp +++ b/Common/DocxFormat/Source/XlsxFormat/Slicer/Slicer.cpp @@ -328,7 +328,7 @@ void CSlicerFile::readBin(const CPath& oPath) CXlsb* xlsb = dynamic_cast(File::m_pMainDocument); if (xlsb) { - XLSB::SlicersStreamPtr slicersStream = std::make_shared(); + XLSB::SlicersStreamPtr slicersStream(new XLSB::SlicersStream); xlsb->ReadBin(oPath, slicersStream.get()); @@ -338,6 +338,8 @@ void CSlicerFile::readBin(const CPath& oPath) m_oSlicers = slicersStream->m_SLICERS; } + //slicersStream.reset(); + } } diff --git a/Common/DocxFormat/Source/XlsxFormat/Slicer/SlicerCache.cpp b/Common/DocxFormat/Source/XlsxFormat/Slicer/SlicerCache.cpp index b6022e7cde..2a0bfc306d 100644 --- a/Common/DocxFormat/Source/XlsxFormat/Slicer/SlicerCache.cpp +++ b/Common/DocxFormat/Source/XlsxFormat/Slicer/SlicerCache.cpp @@ -1752,7 +1752,7 @@ void CSlicerCacheFile::readBin(const CPath& oPath) CXlsb* xlsb = dynamic_cast(File::m_pMainDocument); if (xlsb) { - XLSB::SlicerCachesStreamPtr slicerCachesStream = std::make_shared(); + XLSB::SlicerCachesStreamPtr slicerCachesStream(new XLSB::SlicerCachesStream); xlsb->ReadBin(oPath, slicerCachesStream.get()); @@ -1761,6 +1761,8 @@ void CSlicerCacheFile::readBin(const CPath& oPath) if (slicerCachesStream->m_SLICERCACHE != nullptr) m_oSlicerCacheDefinition = slicerCachesStream->m_SLICERCACHE; } + + //slicerCachesStream.reset(); } } diff --git a/Common/DocxFormat/Source/XlsxFormat/Styles/Colors.h b/Common/DocxFormat/Source/XlsxFormat/Styles/Colors.h index 31ed43f6d8..1e7523b1d8 100644 --- a/Common/DocxFormat/Source/XlsxFormat/Styles/Colors.h +++ b/Common/DocxFormat/Source/XlsxFormat/Styles/Colors.h @@ -87,19 +87,19 @@ namespace OOX if(ptr->m_INDEXEDCOLORS != nullptr) { - auto arIndexColor = static_cast(ptr->m_INDEXEDCOLORS.get())->m_arIndexedColor; - if(!arIndexColor.empty()) + auto oINDEXEDCOLORS = static_cast(ptr->m_INDEXEDCOLORS.get()); + if(!oINDEXEDCOLORS->m_arIndexedColor.empty()) { - m_oIndexedColors = arIndexColor; + m_oIndexedColors = oINDEXEDCOLORS->m_arIndexedColor; } } if(ptr->m_MRUCOLORS != nullptr) { - auto arMruColors = static_cast(ptr->m_MRUCOLORS.get())->m_arMRUColor; - if(!arMruColors.empty()) + auto oMRUCOLORS = static_cast(ptr->m_MRUCOLORS.get()); + if(!oMRUCOLORS->m_arMRUColor.empty()) { - m_oMruColors = arMruColors; + m_oMruColors = oMRUCOLORS->m_arMRUColor; } } } diff --git a/Common/DocxFormat/Source/XlsxFormat/Styles/Styles.h b/Common/DocxFormat/Source/XlsxFormat/Styles/Styles.h index b963714a66..a16a81877b 100644 --- a/Common/DocxFormat/Source/XlsxFormat/Styles/Styles.h +++ b/Common/DocxFormat/Source/XlsxFormat/Styles/Styles.h @@ -183,7 +183,7 @@ namespace OOX CXlsb* xlsb = dynamic_cast(File::m_pMainDocument); if (xlsb) { - XLSB::StylesStreamPtr stylesStream = std::make_shared(); + XLSB::StylesStreamPtr stylesStream(new XLSB::StylesStream); xlsb->ReadBin(oPath, stylesStream.get()); @@ -224,6 +224,9 @@ namespace OOX AfterRead(); } + + //stylesStream.reset(); + } } diff --git a/Common/DocxFormat/Source/XlsxFormat/Table/Connections.h b/Common/DocxFormat/Source/XlsxFormat/Table/Connections.h index fc9c0755fc..da9b62a0f4 100644 --- a/Common/DocxFormat/Source/XlsxFormat/Table/Connections.h +++ b/Common/DocxFormat/Source/XlsxFormat/Table/Connections.h @@ -1129,7 +1129,7 @@ xmlns:xr16=\"http://schemas.microsoft.com/office/spreadsheetml/2017/revision16\" CXlsb* xlsb = dynamic_cast(File::m_pMainDocument); if (xlsb) { - XLSB::ConnectionsStreamPtr connectionsStream = std::make_shared(); + XLSB::ConnectionsStreamPtr connectionsStream(new XLSB::ConnectionsStream); xlsb->ReadBin(oPath, connectionsStream.get()); diff --git a/Common/DocxFormat/Source/XlsxFormat/Table/Tables.cpp b/Common/DocxFormat/Source/XlsxFormat/Table/Tables.cpp index 4f5b8d633b..75386f7028 100644 --- a/Common/DocxFormat/Source/XlsxFormat/Table/Tables.cpp +++ b/Common/DocxFormat/Source/XlsxFormat/Table/Tables.cpp @@ -698,7 +698,7 @@ xmlns:xr3=\"http://schemas.microsoft.com/office/spreadsheetml/2016/revision3\"") CXlsb* xlsb = dynamic_cast(File::m_pMainDocument); if (xlsb) { - XLSB::TableStreamPtr tableStream = std::make_shared(); + XLSB::TableStreamPtr tableStream(new XLSB::TableStream); xlsb->ReadBin(oPath, tableStream.get()); @@ -708,6 +708,8 @@ xmlns:xr3=\"http://schemas.microsoft.com/office/spreadsheetml/2016/revision3\"") m_oTable = tableStream->m_TABLE; } + //tableStream.reset(); + } } @@ -1204,7 +1206,7 @@ xmlns:xr16=\"http://schemas.microsoft.com/office/spreadsheetml/2017/revision16\" CXlsb* xlsb = dynamic_cast(File::m_pMainDocument); if (xlsb) { - XLSB::QueryTableStreamPtr querytableStream = std::make_shared(); + XLSB::QueryTableStreamPtr querytableStream(new XLSB::QueryTableStream); xlsb->ReadBin(oPath, querytableStream.get()); @@ -1214,6 +1216,8 @@ xmlns:xr16=\"http://schemas.microsoft.com/office/spreadsheetml/2017/revision16\" m_oQueryTable = querytableStream->m_QSI; } + //querytableStream.reset(); + } } void CQueryTableFile::read(const CPath& oRootPath, const CPath& oPath) diff --git a/Common/DocxFormat/Source/XlsxFormat/Workbook/Workbook.h b/Common/DocxFormat/Source/XlsxFormat/Workbook/Workbook.h index 996d97d389..a232d8ebea 100644 --- a/Common/DocxFormat/Source/XlsxFormat/Workbook/Workbook.h +++ b/Common/DocxFormat/Source/XlsxFormat/Workbook/Workbook.h @@ -244,7 +244,7 @@ namespace OOX CXlsb* xlsb = dynamic_cast(File::m_pMainDocument); if (xlsb) { - XLSB::WorkBookStreamPtr workBookStream = std::make_shared(); + XLSB::WorkBookStreamPtr workBookStream(new XLSB::WorkBookStream); xlsb->ReadBin(oPath, workBookStream.get()); @@ -280,6 +280,8 @@ namespace OOX m_oExtLst = workBookStream->m_FRTWORKBOOK; } + //workBookStream.reset(); + } } virtual void read(const CPath& oPath) diff --git a/Common/DocxFormat/Source/XlsxFormat/Worksheets/Cols.h b/Common/DocxFormat/Source/XlsxFormat/Worksheets/Cols.h index fa63c7ac43..6cc15aece8 100644 --- a/Common/DocxFormat/Source/XlsxFormat/Worksheets/Cols.h +++ b/Common/DocxFormat/Source/XlsxFormat/Worksheets/Cols.h @@ -192,8 +192,8 @@ namespace OOX for(auto &COLINFOS : obj) { - auto ptr = static_cast(COLINFOS.get())->m_arBrtColInfo; - for(auto &col : ptr) + auto ptr = static_cast(COLINFOS.get()); + for(auto &col : ptr->m_arBrtColInfo) { CCol *pCol = new CCol(m_pMainDocument); pCol->fromBin(col); diff --git a/Common/DocxFormat/Source/XlsxFormat/Worksheets/SheetData.cpp b/Common/DocxFormat/Source/XlsxFormat/Worksheets/SheetData.cpp index 4493cb3cb9..d9bc80706c 100644 --- a/Common/DocxFormat/Source/XlsxFormat/Worksheets/SheetData.cpp +++ b/Common/DocxFormat/Source/XlsxFormat/Worksheets/SheetData.cpp @@ -44,6 +44,7 @@ #include "../../XlsbFormat/Biff12_unions/ACCELLTABLE.h" #include "../../XlsbFormat/Biff12_records/RwDescent.h" +#include "../../XlsbFormat/Biff12_unions/CELLTABLE.h" #include "../../XlsbFormat/Biff12_unions/CELL.h" #include "../../XlsbFormat/Biff12_unions/CELLMETA.h" #include "../../XlsbFormat/Biff12_unions/DATACELL.h" @@ -1702,10 +1703,28 @@ namespace OOX m_oCellMetadata = pValueMeta->ivmb; } - auto pDATACELL = static_cast(ptr->m_DATACELL.get()); - auto pTABLECELL = static_cast(ptr->m_TABLECELL.get()); - auto pFMLACELL = static_cast(ptr->m_FMLACELL.get()); - auto pSHRFMLACELL = static_cast(ptr->m_SHRFMLACELL.get()); + XLSB::DATACELL* pDATACELL = nullptr; + XLSB::TABLECELL* pTABLECELL = nullptr; + XLSB::FMLACELL* pFMLACELL = nullptr; + XLSB::SHRFMLACELL* pSHRFMLACELL = nullptr; + + switch(ptr->m_source->get_type()) + { + case XLS::typeDATACELL: + pDATACELL = static_cast(ptr->m_source.get()); + break; + case XLS::typeTABLECELL: + pTABLECELL = static_cast(ptr->m_source.get()); + break; + case XLS::typeFMLACELL: + pFMLACELL = static_cast(ptr->m_source.get()); + break; + case XLS::typeSHRFMLACELL: + pSHRFMLACELL = static_cast(ptr->m_source.get()); + pFMLACELL = static_cast(pSHRFMLACELL->_fmlacell.get()); + break; + } + if(pDATACELL != nullptr || pTABLECELL != nullptr || pFMLACELL != nullptr) { @@ -1916,17 +1935,28 @@ namespace OOX } } - void CRow::fromBin(XLSB::CELLTABLE::_data& obj) + void CRow::fromBin(XLS::BaseObjectPtr& obj) { ReadAttributes(obj); - for(auto &CELL : obj.m_arCELL) + auto ptr = static_cast(obj.get()); + + for (auto it = ptr->m_arCELL.begin(); it != ptr->m_arCELL.end(); /* NOTHING */) + { + CCell *pCell = new CCell(m_pMainDocument); + pCell->fromBin(*it); + m_arrItems.push_back(pCell); + + it = ptr->m_arCELL.erase(it); + } + + /*for(auto &CELL : obj.m_arCELL) { CCell *pCell = new CCell(m_pMainDocument); pCell->fromBin(CELL); m_arrItems.push_back(pCell); - } + }*/ } void CRow::fromXLSB (NSBinPptxRW::CBinaryFileReader& oStream, _UINT16 nType) @@ -2130,29 +2160,33 @@ namespace OOX WritingElement_ReadAttributes_EndChar( oReader ) } - void CRow::ReadAttributes(XLSB::CELLTABLE::_data& obj) + void CRow::ReadAttributes(XLS::BaseObjectPtr& obj) { - auto ptr = static_cast(obj.m_BrtRowHdr.get()); + auto ptr = static_cast(obj.get()); if(ptr != nullptr) { - m_oCollapsed = ptr->fCollapsed; - m_oCustomFormat = ptr->fGhostDirty; - m_oCustomHeight = ptr->fUnsynced; - m_oHidden = ptr->fDyZero; - m_oHt = ptr->miyRw/20.; - m_oOutlineLevel = ptr->iOutLevel; - m_oPh = ptr->fPhonetic; - m_oR = ptr->rw + 1; - m_oS = ptr->ixfe_val; - m_oThickBot = ptr->fExDes; - m_oThickTop = ptr->fExAsc; - } + auto ptrRowHdr = static_cast(ptr->m_BrtRowHdr.get()); + if(ptrRowHdr != nullptr) + { + m_oCollapsed = ptrRowHdr->fCollapsed; + m_oCustomFormat = ptrRowHdr->fGhostDirty; + m_oCustomHeight = ptrRowHdr->fUnsynced; + m_oHidden = ptrRowHdr->fDyZero; + m_oHt = ptrRowHdr->miyRw/20.; + m_oOutlineLevel = ptrRowHdr->iOutLevel; + m_oPh = ptrRowHdr->fPhonetic; + m_oR = ptrRowHdr->rw + 1; + m_oS = ptrRowHdr->ixfe_val; + m_oThickBot = ptrRowHdr->fExDes; + m_oThickTop = ptrRowHdr->fExAsc; + } - if(static_cast(obj.m_ACCELLTABLE.get()) != nullptr && static_cast(obj.m_ACCELLTABLE.get())->m_BrtRwDescent != nullptr) - { - auto ptr1 = static_cast(static_cast(obj.m_ACCELLTABLE.get())->m_BrtRwDescent.get()); - m_oDyDescent = ptr1->dyDescent; + if(static_cast(ptr->m_ACCELLTABLE.get()) != nullptr && static_cast(ptr->m_ACCELLTABLE.get())->m_BrtRwDescent != nullptr) + { + auto ptrRwDescent = static_cast(static_cast(ptr->m_ACCELLTABLE.get())->m_BrtRwDescent.get()); + m_oDyDescent = ptrRwDescent->dyDescent; + } } } @@ -2400,19 +2434,26 @@ namespace OOX } //--------------------------------------------------------------------------------------------------------------------- - void CSheetData::fromBin(XLS::BaseObject& obj) + void CSheetData::fromBin(XLS::BaseObjectPtr& obj) { //ReadAttributes(obj); - auto ptr = static_cast(&obj); + auto ptr = static_cast(obj.get()); - for(auto &Parenthesis_CELLTABLE : ptr->m_arParenthesis_CELLTABLE) + for (auto it = ptr->m_arParenthesis_CELLTABLE.begin(); it != ptr->m_arParenthesis_CELLTABLE.end(); /* NOTHING */) { + CRow *pRow = new CRow(m_pMainDocument); + pRow->fromBin(*it); + m_arrItems.push_back(pRow); + it = ptr->m_arParenthesis_CELLTABLE.erase(it); + } + /*for(auto &Parenthesis_CELLTABLE : ptr->m_arParenthesis_CELLTABLE) + { CRow *pRow = new CRow(m_pMainDocument); pRow->fromBin(Parenthesis_CELLTABLE); m_arrItems.push_back(pRow); - } + }*/ } //--------------------------------------------------------------------------------------------------------------------- diff --git a/Common/DocxFormat/Source/XlsxFormat/Worksheets/SheetData.h b/Common/DocxFormat/Source/XlsxFormat/Worksheets/SheetData.h index fd0ff063e4..6afe5f2260 100644 --- a/Common/DocxFormat/Source/XlsxFormat/Worksheets/SheetData.h +++ b/Common/DocxFormat/Source/XlsxFormat/Worksheets/SheetData.h @@ -35,7 +35,6 @@ #include "../SharedStrings/Si.h" #include "Cols.h" -#include "../../XlsbFormat/Biff12_unions/CELLTABLE.h" namespace NSBinPptxRW { @@ -453,7 +452,7 @@ namespace OOX void fromXMLToXLSB(XmlUtils::CXmlLiteReader& oReader, NSBinPptxRW::CXlsbBinaryWriter& oStream, CCellXLSB& oCell); void fromXLSB (NSBinPptxRW::CBinaryFileReader& oStream, _UINT16 nType); void toXLSB (NSBinPptxRW::CXlsbBinaryWriter& oStream) const; - void fromBin(XLSB::CELLTABLE::_data& obj); + void fromBin(XLS::BaseObjectPtr& obj); virtual EElementType getType () const { @@ -463,7 +462,7 @@ namespace OOX private: void ReadAttributes(XmlUtils::CXmlLiteReader& oReader); - void ReadAttributes(XLSB::CELLTABLE::_data& obj); + void ReadAttributes(XLS::BaseObjectPtr& obj); void CheckIndex(); public: @@ -522,7 +521,7 @@ namespace OOX virtual void fromXML(XmlUtils::CXmlLiteReader& oReader); void fromXLSB (NSBinPptxRW::CBinaryFileReader& oStream, _UINT16 nType, CSVWriter::CCSVWriter* pCSVWriter, NSFile::CStreamWriter& oStreamWriter); - void fromBin(XLS::BaseObject& obj); + void fromBin(XLS::BaseObjectPtr& obj); virtual EElementType getType () const { diff --git a/Common/DocxFormat/Source/XlsxFormat/Worksheets/Worksheet.cpp b/Common/DocxFormat/Source/XlsxFormat/Worksheets/Worksheet.cpp index ec065adeff..e3b4166193 100644 --- a/Common/DocxFormat/Source/XlsxFormat/Worksheets/Worksheet.cpp +++ b/Common/DocxFormat/Source/XlsxFormat/Worksheets/Worksheet.cpp @@ -104,7 +104,7 @@ namespace OOX { if(m_bIsChartSheet) { - XLSB::ChartSheetStreamPtr chartSheetStream = std::make_shared(); + XLSB::ChartSheetStreamPtr chartSheetStream(new XLSB::ChartSheetStream); xlsb->ReadBin(oPath, chartSheetStream.get()); @@ -135,10 +135,12 @@ namespace OOX m_oSheetProtection = chartSheetStream->m_BrtCsProtection; } + + //chartSheetStream.reset(); } else { - XLSB::WorkSheetStreamPtr workSheetStream = std::make_shared(); + XLSB::WorkSheetStreamPtr workSheetStream(new XLSB::WorkSheetStream); xlsb->ReadBin(oPath, workSheetStream.get()); @@ -219,6 +221,8 @@ namespace OOX m_oExtLst = workSheetStream->m_FRTWORKSHEET; } + //workSheetStream.reset(); + } } diff --git a/Common/DocxFormat/Source/XlsxFormat/Worksheets/WorksheetChildOther.h b/Common/DocxFormat/Source/XlsxFormat/Worksheets/WorksheetChildOther.h index a039986ccc..2e7d9d7f74 100644 --- a/Common/DocxFormat/Source/XlsxFormat/Worksheets/WorksheetChildOther.h +++ b/Common/DocxFormat/Source/XlsxFormat/Worksheets/WorksheetChildOther.h @@ -1196,11 +1196,8 @@ namespace OOX { if(obj->get_type() == XLS::typeWSVIEWS2) { - auto arView = static_cast(obj.get())->m_arWSVIEW2; - if (arView.empty()) - return; - - for(auto &pView : arView) + auto oWSVIEWS2 = static_cast(obj.get()); + for(auto &pView : oWSVIEWS2->m_arWSVIEW2) { CSheetView *pSheetView = new CSheetView(pView); m_arrItems.push_back(pSheetView); @@ -1209,11 +1206,9 @@ namespace OOX } else if(obj->get_type() == XLS::typeCSVIEWS) { - auto arView = static_cast(obj.get())->m_arCSVIEW; - if (arView.empty()) - return; + auto oCSVIEWS = static_cast(obj.get()); - for(auto &pView : arView) + for(auto &pView : oCSVIEWS->m_arCSVIEW) { CSheetView *pSheetView = new CSheetView(pView); m_arrItems.push_back(pSheetView);