summaryrefslogtreecommitdiffstats
path: root/include/codemaker
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2016-11-08 08:32:23 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2016-11-08 08:57:05 +0000
commitf606a6b248956094a14c15d8154af5f8522e415b (patch)
tree706e1c8708627fd3819f84972e7baf17036fe720 /include/codemaker
parentloplugin:expandablemethods in framework (diff)
downloadcore-f606a6b248956094a14c15d8154af5f8522e415b.tar.gz
core-f606a6b248956094a14c15d8154af5f8522e415b.zip
loplugin:unnecessaryvirtual in basctl..chart2
Change-Id: Id4eeb12792c3a66b68a907cb459ab437e3d64e4c Reviewed-on: https://gerrit.libreoffice.org/30680 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/codemaker')
-rw-r--r--include/codemaker/global.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/codemaker/global.hxx b/include/codemaker/global.hxx
index d9dc636e4475..f17141178139 100644
--- a/include/codemaker/global.hxx
+++ b/include/codemaker/global.hxx
@@ -37,11 +37,11 @@ typedef ::std::set< ::rtl::OString > StringSet;
// FileStream
-class FileStream
+class FileStream final
{
public:
FileStream();
- virtual ~FileStream();
+ ~FileStream();
bool isValid();
@@ -84,11 +84,11 @@ bool removeTypeFile(const ::rtl::OString& fileName);
::rtl::OUString convertToFileUrl(const ::rtl::OString& fileName);
-class CannotDumpException {
+class CannotDumpException final {
public:
CannotDumpException(OUString const & message): message_(message) {}
- virtual ~CannotDumpException() throw ();
+ ~CannotDumpException() throw ();
const OUString& getMessage() const { return message_; }