summaryrefslogtreecommitdiff
path: root/cui/source/options/connpoolsettings.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-11-06 14:02:20 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-11-07 07:36:19 +0100
commitd0a4b17d58285ad616cf951d7e3b5fe89802c01d (patch)
tree579e636a3d32ca6a7601be8138db41cdf85dfcd8 /cui/source/options/connpoolsettings.hxx
parente2655495d544d51db68bb6ce94b3264290533bad (diff)
loplugin:finalclasses in cui
Change-Id: I59c148dbc2bfc1dff554efe7e7c974dc557b2aeb Reviewed-on: https://gerrit.libreoffice.org/44362 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'cui/source/options/connpoolsettings.hxx')
-rw-r--r--cui/source/options/connpoolsettings.hxx7
1 files changed, 2 insertions, 5 deletions
diff --git a/cui/source/options/connpoolsettings.hxx b/cui/source/options/connpoolsettings.hxx
index 7ef6bc7f61df..d5bd7e336a7d 100644
--- a/cui/source/options/connpoolsettings.hxx
+++ b/cui/source/options/connpoolsettings.hxx
@@ -43,9 +43,8 @@ namespace offapp
bool operator != (const DriverPooling& _rR) const { return !operator ==(_rR); }
};
- class DriverPoolingSettings
+ class DriverPoolingSettings final
{
- protected:
typedef std::vector<DriverPooling> DriverSettings;
DriverSettings m_aDrivers;
@@ -53,7 +52,6 @@ namespace offapp
typedef DriverSettings::const_iterator const_iterator;
typedef DriverSettings::iterator iterator;
- public:
DriverPoolingSettings();
sal_Int32 size() const { return m_aDrivers.size(); }
@@ -67,9 +65,8 @@ namespace offapp
void push_back(const DriverPooling& _rElement) { m_aDrivers.push_back(_rElement); }
};
- class DriverPoolingSettingsItem : public SfxPoolItem
+ class DriverPoolingSettingsItem final : public SfxPoolItem
{
- protected:
DriverPoolingSettings m_aSettings;
public: