summaryrefslogtreecommitdiff
path: root/sd/source/ui/table/tableobjectbar.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-10-25 15:53:56 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-10-26 08:47:11 +0200
commitb4e235a925b5c73a2220f57cdb8b85379fb3bac1 (patch)
tree224ab0d69c63b1843808f6eb44a6326bcad8db4c /sd/source/ui/table/tableobjectbar.hxx
parentcb151051d79a7ec176e769a33a56e7d906fc1425 (diff)
loplugin:finalclasses in sd
Change-Id: I0947aa295ba1859ebc1e7ce9ce2e621f02d399ce Reviewed-on: https://gerrit.libreoffice.org/43846 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sd/source/ui/table/tableobjectbar.hxx')
-rw-r--r--sd/source/ui/table/tableobjectbar.hxx13
1 files changed, 5 insertions, 8 deletions
diff --git a/sd/source/ui/table/tableobjectbar.hxx b/sd/source/ui/table/tableobjectbar.hxx
index dcc66b846494..32aa85f0e675 100644
--- a/sd/source/ui/table/tableobjectbar.hxx
+++ b/sd/source/ui/table/tableobjectbar.hxx
@@ -33,17 +33,11 @@ class ViewShell;
namespace sd { namespace ui { namespace table {
-class TableObjectBar : public SfxShell
+class TableObjectBar final : public SfxShell
{
public:
SFX_DECL_INTERFACE( SD_IF_SDDRAWTABLEOBJECTBAR )
-private:
- /// SfxInterface initializer.
- static void InitInterface_Impl();
-
-public:
-
TableObjectBar( ::sd::ViewShell* pSdViewShell, ::sd::View* pSdView);
virtual ~TableObjectBar() override;
@@ -51,7 +45,10 @@ public:
void GetAttrState( SfxItemSet& rSet );
void Execute( SfxRequest& rReq );
-protected:
+private:
+ /// SfxInterface initializer.
+ static void InitInterface_Impl();
+
::sd::View* mpView;
::sd::ViewShell* mpViewSh;
};