summaryrefslogtreecommitdiff
path: root/include/editeng
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2016-11-08 08:13:11 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2016-11-08 06:57:57 +0000
commitc123c528bf1550e544b29e5a22a94a0452d5f349 (patch)
tree2dd015a5fe42b6c9b95302016674f3362478d295 /include/editeng
parent62e5010e5df379a26aa85ca9fd58bf872f020c36 (diff)
loplugin:unnecessaryvirtual in comphelper..forms
Change-Id: Iabe292e68cb84b97f207061347ed6a30309dc9fd Reviewed-on: https://gerrit.libreoffice.org/30679 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/editeng')
-rw-r--r--include/editeng/Trie.hxx4
-rw-r--r--include/editeng/acorrcfg.hxx4
-rw-r--r--include/editeng/editview.hxx4
-rw-r--r--include/editeng/numitem.hxx4
-rw-r--r--include/editeng/outliner.hxx4
5 files changed, 10 insertions, 10 deletions
diff --git a/include/editeng/Trie.hxx b/include/editeng/Trie.hxx
index 4cdcdc9d8f9d..62e2ff9110e1 100644
--- a/include/editeng/Trie.hxx
+++ b/include/editeng/Trie.hxx
@@ -21,14 +21,14 @@ namespace editeng
struct TrieNode;
-class EDITENG_DLLPUBLIC Trie
+class EDITENG_DLLPUBLIC Trie final
{
private:
std::unique_ptr<TrieNode> mRoot;
public:
Trie();
- virtual ~Trie();
+ ~Trie();
void insert(const OUString& sInputString) const;
void findSuggestions(const OUString& sWordPart, std::vector<OUString>& rSuggestionList) const;
diff --git a/include/editeng/acorrcfg.hxx b/include/editeng/acorrcfg.hxx
index ee21ebc5f931..6eef0582c4c1 100644
--- a/include/editeng/acorrcfg.hxx
+++ b/include/editeng/acorrcfg.hxx
@@ -60,7 +60,7 @@ public:
/*--------------------------------------------------------------------
Description: Configuration for Auto Correction
--------------------------------------------------------------------*/
-class EDITENG_DLLPUBLIC SvxAutoCorrCfg
+class EDITENG_DLLPUBLIC SvxAutoCorrCfg final
{
friend class SvxBaseAutoCorrCfg;
friend class SvxSwAutoCorrCfg;
@@ -111,7 +111,7 @@ public:
bool IsSearchInAllCategories() const { return bSearchInAllCategories;}
SvxAutoCorrCfg();
- virtual ~SvxAutoCorrCfg();
+ ~SvxAutoCorrCfg();
static SvxAutoCorrCfg& Get();
};
diff --git a/include/editeng/editview.hxx b/include/editeng/editview.hxx
index 007f368e9c90..c05371d287d3 100644
--- a/include/editeng/editview.hxx
+++ b/include/editeng/editview.hxx
@@ -79,7 +79,7 @@ enum class ScrollRangeCheck
};
-class EDITENG_DLLPUBLIC EditView
+class EDITENG_DLLPUBLIC EditView final
{
friend class EditEngine;
friend class ImpEditEngine;
@@ -101,7 +101,7 @@ private:
public:
EditView( EditEngine* pEng, vcl::Window* pWindow );
- virtual ~EditView();
+ ~EditView();
void SetEditEngine( EditEngine* pEditEngine );
EditEngine* GetEditEngine() const;
diff --git a/include/editeng/numitem.hxx b/include/editeng/numitem.hxx
index 5466ae824797..86d8b0591ede 100644
--- a/include/editeng/numitem.hxx
+++ b/include/editeng/numitem.hxx
@@ -235,7 +235,7 @@ enum class SvxNumRuleType
END
};
-class EDITENG_DLLPUBLIC SvxNumRule
+class EDITENG_DLLPUBLIC SvxNumRule final
{
sal_uInt16 nLevelCount; // Number of supported levels
SvxNumRuleFlags nFeatureFlags; // What is supported?
@@ -257,7 +257,7 @@ public:
= SvxNumberFormat::LABEL_WIDTH_AND_POSITION );
SvxNumRule(const SvxNumRule& rCopy);
SvxNumRule(SvStream &rStream);
- virtual ~SvxNumRule();
+ ~SvxNumRule();
bool operator==( const SvxNumRule& ) const;
bool operator!=( const SvxNumRule& rRule ) const {return !(*this == rRule);}
diff --git a/include/editeng/outliner.hxx b/include/editeng/outliner.hxx
index bfe11fc53de6..cdc7cb149353 100644
--- a/include/editeng/outliner.hxx
+++ b/include/editeng/outliner.hxx
@@ -188,7 +188,7 @@ inline void ParaRange::Adjust()
}
}
-class EDITENG_DLLPUBLIC OutlinerView
+class EDITENG_DLLPUBLIC OutlinerView final
{
friend class Outliner;
@@ -218,7 +218,7 @@ private:
public:
OutlinerView( Outliner* pOut, vcl::Window* pWindow );
- virtual ~OutlinerView();
+ ~OutlinerView();
EditView& GetEditView() const { return *pEditView; }