summaryrefslogtreecommitdiff
path: root/lotuswordpro/source/filter/xfilter
diff options
context:
space:
mode:
Diffstat (limited to 'lotuswordpro/source/filter/xfilter')
-rw-r--r--lotuswordpro/source/filter/xfilter/xfchange.hxx14
-rw-r--r--lotuswordpro/source/filter/xfilter/xfconfigmanager.hxx2
-rw-r--r--lotuswordpro/source/filter/xfilter/xfcrossref.hxx4
-rw-r--r--lotuswordpro/source/filter/xfilter/xfplaceholder.hxx4
4 files changed, 12 insertions, 12 deletions
diff --git a/lotuswordpro/source/filter/xfilter/xfchange.hxx b/lotuswordpro/source/filter/xfilter/xfchange.hxx
index 1a3cc0a8989d..1ed94a9b53a1 100644
--- a/lotuswordpro/source/filter/xfilter/xfchange.hxx
+++ b/lotuswordpro/source/filter/xfilter/xfchange.hxx
@@ -74,7 +74,7 @@ class XFChangeList : public XFContentContainer
{
public:
XFChangeList(){}
- ~XFChangeList(){}
+ virtual ~XFChangeList(){}
virtual void ToXml(IXFStream *pStrm) SAL_OVERRIDE;
};
@@ -82,7 +82,7 @@ class XFChangeRegion : public XFContentContainer
{
public:
XFChangeRegion(){}
- ~XFChangeRegion(){}
+ virtual ~XFChangeRegion(){}
virtual void ToXml(IXFStream *pStrm) SAL_OVERRIDE;
void SetChangeID(const OUString& sID){m_sID=sID;}
OUString GetChangeID(){return m_sID;}
@@ -96,7 +96,7 @@ class XFChangeInsert : public XFChangeRegion
{
public:
XFChangeInsert(){}
- ~XFChangeInsert(){}
+ virtual ~XFChangeInsert(){}
void ToXml(IXFStream *pStrm) SAL_OVERRIDE;
};
@@ -104,7 +104,7 @@ class XFChangeDelete : public XFChangeRegion
{
public:
XFChangeDelete(){}
- ~XFChangeDelete(){}
+ virtual ~XFChangeDelete(){}
void ToXml(IXFStream *pStrm) SAL_OVERRIDE;
};
@@ -112,7 +112,7 @@ class XFChange : public XFContent
{
public:
XFChange(){}
- ~XFChange(){}
+ virtual ~XFChange(){}
void ToXml(IXFStream *pStrm) SAL_OVERRIDE;
void SetChangeID(const OUString& sID){m_sID=sID;}
OUString GetChangeID(){return m_sID;}
@@ -124,7 +124,7 @@ class XFChangeStart : public XFContent
{
public:
XFChangeStart(){}
- ~XFChangeStart(){}
+ virtual ~XFChangeStart(){}
void ToXml(IXFStream *pStrm) SAL_OVERRIDE;
void SetChangeID(const OUString& sID){m_sID=sID;}
OUString GetChangeID(){return m_sID;}
@@ -136,7 +136,7 @@ class XFChangeEnd : public XFContent
{
public:
XFChangeEnd(){}
- ~XFChangeEnd(){}
+ virtual ~XFChangeEnd(){}
void ToXml(IXFStream *pStrm) SAL_OVERRIDE;
void SetChangeID(const OUString& sID){m_sID=sID;}
OUString GetChangeID(){return m_sID;}
diff --git a/lotuswordpro/source/filter/xfilter/xfconfigmanager.hxx b/lotuswordpro/source/filter/xfilter/xfconfigmanager.hxx
index 95e29f114d38..c467d18ddfd9 100644
--- a/lotuswordpro/source/filter/xfilter/xfconfigmanager.hxx
+++ b/lotuswordpro/source/filter/xfilter/xfconfigmanager.hxx
@@ -76,7 +76,7 @@ class XFConfigManager : public XFStyleContainer
{
public:
XFConfigManager();
- ~XFConfigManager();
+ virtual ~XFConfigManager();
public:
/**
diff --git a/lotuswordpro/source/filter/xfilter/xfcrossref.hxx b/lotuswordpro/source/filter/xfilter/xfcrossref.hxx
index 697af4c0d74f..684aafaf5b8d 100644
--- a/lotuswordpro/source/filter/xfilter/xfcrossref.hxx
+++ b/lotuswordpro/source/filter/xfilter/xfcrossref.hxx
@@ -70,7 +70,7 @@ class XFCrossRefStart : public XFContent
{
public:
XFCrossRefStart();
- ~XFCrossRefStart();
+ virtual ~XFCrossRefStart();
void SetRefType(sal_uInt8 nType);
void SetMarkName(const OUString& sName);
void ToXml(IXFStream *pStrm) SAL_OVERRIDE;
@@ -99,7 +99,7 @@ class XFCrossRefEnd : public XFContent
{
public:
XFCrossRefEnd();
- ~XFCrossRefEnd();
+ virtual ~XFCrossRefEnd();
void ToXml(IXFStream *pStrm) SAL_OVERRIDE;
};
diff --git a/lotuswordpro/source/filter/xfilter/xfplaceholder.hxx b/lotuswordpro/source/filter/xfilter/xfplaceholder.hxx
index ae8592b8b6e9..7a11097840c3 100644
--- a/lotuswordpro/source/filter/xfilter/xfplaceholder.hxx
+++ b/lotuswordpro/source/filter/xfilter/xfplaceholder.hxx
@@ -70,7 +70,7 @@ class XFHolderStart : public XFContent
{
public:
XFHolderStart();
- ~XFHolderStart();
+ virtual ~XFHolderStart();
void SetType(const OUString& sType);
void SetDesc(const OUString& sDesc);
void SetPrompt(const OUString& sText);
@@ -120,7 +120,7 @@ class XFHolderEnd : public XFContent
{
public:
XFHolderEnd();
- ~XFHolderEnd();
+ virtual ~XFHolderEnd();
void ToXml(IXFStream *pStrm) SAL_OVERRIDE;
};