diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-07-01 10:27:41 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-07-01 11:26:04 +0200 |
commit | 65af6fda33bc40670d41055f63e010c763f5b0b1 (patch) | |
tree | 2394d6e1de989dfaa732eb86140ff991fef5bea6 /sd | |
parent | 28ee6bc8cf9548a6c24e68e5804077a96605a1f2 (diff) |
loplugin:unusedmethods
Change-Id: I3ff5333c1e73ca61b0a7339e4b7dcfce211b88e2
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/118207
Tested-by: Jenkins
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sd')
-rw-r--r-- | sd/inc/sdabstdlg.hxx | 1 | ||||
-rw-r--r-- | sd/source/ui/dlg/sddlgfact.cxx | 5 | ||||
-rw-r--r-- | sd/source/ui/dlg/sddlgfact.hxx | 1 |
3 files changed, 0 insertions, 7 deletions
diff --git a/sd/inc/sdabstdlg.hxx b/sd/inc/sdabstdlg.hxx index c5c8c3a38ad4..4c9c547f98a2 100644 --- a/sd/inc/sdabstdlg.hxx +++ b/sd/inc/sdabstdlg.hxx @@ -70,7 +70,6 @@ class AbstractSdCustomShowDlg : public VclAbstractDialog protected: virtual ~AbstractSdCustomShowDlg() override = default; public: - virtual bool IsModified() const = 0; virtual bool IsCustomShow() const = 0; }; diff --git a/sd/source/ui/dlg/sddlgfact.cxx b/sd/source/ui/dlg/sddlgfact.cxx index f5ab2524cdb9..0335c68fa8be 100644 --- a/sd/source/ui/dlg/sddlgfact.cxx +++ b/sd/source/ui/dlg/sddlgfact.cxx @@ -240,11 +240,6 @@ OString AbstractCopyDlg_Impl::GetScreenshotId() const return m_xDlg->get_help_id(); } -bool AbstractSdCustomShowDlg_Impl::IsModified() const -{ - return m_xDlg->IsModified(); -} - bool AbstractSdCustomShowDlg_Impl::IsCustomShow() const { return m_xDlg->IsCustomShow(); diff --git a/sd/source/ui/dlg/sddlgfact.hxx b/sd/source/ui/dlg/sddlgfact.hxx index c637eab5d6bc..6570c2b93b5d 100644 --- a/sd/source/ui/dlg/sddlgfact.hxx +++ b/sd/source/ui/dlg/sddlgfact.hxx @@ -133,7 +133,6 @@ public: { } virtual short Execute() override; - virtual bool IsModified() const override ; virtual bool IsCustomShow() const override ; // screenshotting |