summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-04-12 09:51:32 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-04-12 11:36:06 +0200
commit0342562261beede5d3bb2e43c08f6d0f216ff97c (patch)
tree77155eea73ebd8381496bb1a787058a1dc11fdf3 /include
parent03b3562a91c54e0c1b77982e1ca391b1131ac3c2 (diff)
loplugin:unnecessaryvirtual
Change-Id: Ic63efdb720c29bede43e39ee498f63fe1f17fb07 Reviewed-on: https://gerrit.libreoffice.org/70647 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r--include/sfx2/templatelocalview.hxx4
-rw-r--r--include/sfx2/thumbnailview.hxx2
2 files changed, 3 insertions, 3 deletions
diff --git a/include/sfx2/templatelocalview.hxx b/include/sfx2/templatelocalview.hxx
index 123e7f04e1e1..329988c455fd 100644
--- a/include/sfx2/templatelocalview.hxx
+++ b/include/sfx2/templatelocalview.hxx
@@ -202,9 +202,9 @@ public:
// Fill view with template folders thumbnails
void Populate ();
- virtual void reload ();
+ void reload ();
- virtual void showAllTemplates ();
+ void showAllTemplates ();
void showRegion (TemplateContainerItem const *pItem);
diff --git a/include/sfx2/thumbnailview.hxx b/include/sfx2/thumbnailview.hxx
index ab19ba460363..1bc476a47fa5 100644
--- a/include/sfx2/thumbnailview.hxx
+++ b/include/sfx2/thumbnailview.hxx
@@ -335,7 +335,7 @@ public:
void RemoveItem(sal_uInt16 nItemId);
- virtual void Clear();
+ void Clear();
// Change current thumbnail item list with new one (invalidates all pointers to a thumbnail item)
void updateItems(std::vector<std::unique_ptr<ThumbnailViewItem>> items);