summaryrefslogtreecommitdiff
path: root/include/unotools
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-10-05 10:25:29 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-10-05 15:07:23 +0200
commit2bdf80be4c822378ba101703e4051a37c8f2ad41 (patch)
tree158da830eb78da0b9adf6db850fca80a53571428 /include/unotools
parentb6d6591fafb8ad2e59a27ff1ac6b234d879b4cf7 (diff)
loplugin:finalclasses in unotools..vbahelper
Change-Id: I9350f9d37eaba99a1d74e103c969a9dcfe795497 Reviewed-on: https://gerrit.libreoffice.org/43160 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/unotools')
-rw-r--r--include/unotools/accessiblerelationsethelper.hxx6
-rw-r--r--include/unotools/accessiblestatesethelper.hxx6
2 files changed, 4 insertions, 8 deletions
diff --git a/include/unotools/accessiblerelationsethelper.hxx b/include/unotools/accessiblerelationsethelper.hxx
index d49e1dbb5ac7..bbbefcd2b1ff 100644
--- a/include/unotools/accessiblerelationsethelper.hxx
+++ b/include/unotools/accessiblerelationsethelper.hxx
@@ -51,7 +51,7 @@ public:
//===== internal ========================================================
AccessibleRelationSetHelper ();
AccessibleRelationSetHelper (const AccessibleRelationSetHelper& rHelper);
-protected:
+private:
virtual ~AccessibleRelationSetHelper() override;
public:
@@ -124,11 +124,9 @@ public:
virtual css::uno::Sequence<sal_Int8> SAL_CALL
getImplementationId() override;
-protected:
+private:
/// Mutex guarding this object.
::osl::Mutex maMutex;
-
-private:
/// The implementation of this helper interface.
std::unique_ptr<AccessibleRelationSetHelperImpl> mpHelperImpl;
};
diff --git a/include/unotools/accessiblestatesethelper.hxx b/include/unotools/accessiblestatesethelper.hxx
index a9cd22b9e282..4091153df059 100644
--- a/include/unotools/accessiblestatesethelper.hxx
+++ b/include/unotools/accessiblestatesethelper.hxx
@@ -62,7 +62,7 @@ public:
AccessibleStateSetHelper ( const sal_Int64 _nInitialStates );
AccessibleStateSetHelper ( const AccessibleStateSetHelper& rHelper );
-protected:
+private:
virtual ~AccessibleStateSetHelper() override;
public:
@@ -135,11 +135,9 @@ public:
virtual css::uno::Sequence<sal_Int8> SAL_CALL
getImplementationId() override;
-protected:
+private:
/// Mutex guarding this object.
::osl::Mutex maMutex;
-
-private:
/// The implementation of this helper interface.
std::unique_ptr<AccessibleStateSetHelperImpl> mpHelperImpl;
};