diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-10-24 11:03:25 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2017-10-24 13:41:17 +0200 |
commit | b4c890cb65745d05f92e451bb675fc0b2c5e31dc (patch) | |
tree | e8e772bb3e7f124f6602c43289be117df662d7ea /include/svl | |
parent | 49b338b76020682328acbb76cacf82b7699d8891 (diff) |
loplugin:finalclasses in sfx2..svl
Change-Id: I71b78135b3d0259657438c4401340bb35ab5c6e0
Reviewed-on: https://gerrit.libreoffice.org/43742
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/svl')
-rw-r--r-- | include/svl/filenotation.hxx | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/include/svl/filenotation.hxx b/include/svl/filenotation.hxx index 4c99f834a56f..ff89fa462d4a 100644 --- a/include/svl/filenotation.hxx +++ b/include/svl/filenotation.hxx @@ -30,12 +30,8 @@ namespace svt //= OFileNotation - class SVL_DLLPUBLIC OFileNotation + class SVL_DLLPUBLIC OFileNotation final { - protected: - OUString m_sSystem; - OUString m_sFileURL; - public: enum NOTATION { @@ -52,6 +48,9 @@ namespace svt SVL_DLLPRIVATE void construct( const OUString& _rUrlOrPath ); SVL_DLLPRIVATE bool implInitWithSystemNotation( const OUString& _rSystemPath ); SVL_DLLPRIVATE bool implInitWithURLNotation( const OUString& _rURL ); + + OUString m_sSystem; + OUString m_sFileURL; }; |