summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2019-11-06 20:18:33 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2019-11-06 20:03:32 +0100
commitd81f90dda7100f48995a432b999c1ba76a51846a (patch)
treead977dfb775724995bc1b7f8920a080a2958b18f /include
parentc13ea2bd388ac41784db09fc5fcb51ac81900d20 (diff)
loplugin:unnecessaryvirtual
Change-Id: Ibffbd0f5d30ec14cace3638b2bb47c91a583711c Reviewed-on: https://gerrit.libreoffice.org/82171 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r--include/svx/svdpage.hxx2
-rw-r--r--include/vcl/dialog.hxx4
2 files changed, 3 insertions, 3 deletions
diff --git a/include/svx/svdpage.hxx b/include/svx/svdpage.hxx
index cdeb74d3714b..cfdea335ee1d 100644
--- a/include/svx/svdpage.hxx
+++ b/include/svx/svdpage.hxx
@@ -108,7 +108,7 @@ public:
bool IsObjOrdNumsDirty() const { return mbObjOrdNumsDirty; }
virtual void NbcInsertObject(SdrObject* pObj, size_t nPos=SAL_MAX_SIZE);
virtual void InsertObject(SdrObject* pObj, size_t nPos=SAL_MAX_SIZE);
- virtual void sort( std::vector<sal_Int32>& sortOrder );
+ void sort( std::vector<sal_Int32>& sortOrder );
void InsertObjectThenMakeNameUnique(SdrObject* pObj);
void InsertObjectThenMakeNameUnique(SdrObject* pObj, std::unordered_set<rtl::OUString>& rNameSet, size_t nPos=SAL_MAX_SIZE);
diff --git a/include/vcl/dialog.hxx b/include/vcl/dialog.hxx
index 275dd6c76b57..14c32a800291 100644
--- a/include/vcl/dialog.hxx
+++ b/include/vcl/dialog.hxx
@@ -112,7 +112,7 @@ public:
virtual bool Close() override;
- virtual short Execute();
+ short Execute();
bool IsInExecute() const { return mbInExecute; }
// Return true when dialog is synchronously executed (calling ::Execute())
bool IsInSyncExecute() const { return mbInSyncExecute; };
@@ -135,7 +135,7 @@ public:
}
/// Commence execution of a modal dialog, disposes owner on failure
- virtual bool StartExecuteAsync(VclAbstractDialog::AsyncContext &rCtx);
+ bool StartExecuteAsync(VclAbstractDialog::AsyncContext &rCtx);
// Dialog::Execute replacement API