summaryrefslogtreecommitdiff
path: root/framework/inc/xml/imagesdocumenthandler.hxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-01-20 12:38:10 +0200
committerNoel Grandin <noel@peralex.com>2015-01-26 08:42:28 +0200
commitb44cbb26efe1d0b0950b1e1613e131b506dc3876 (patch)
tree9b4d5d99e5dad0971079b997a02a6d96536709ca /framework/inc/xml/imagesdocumenthandler.hxx
parent26ad60aec69310fecd918f1c2e09056aa4782320 (diff)
new loplugin: change virtual methods to non-virtual
Where we can prove that the virtual method is never overriden. In the case of pure-virtual methods, we remove the method entirely. Sometimes this leads to entire methods and fields being eliminated. Change-Id: I138ef81c95f115dbd8c023a83cfc7e9d5d6d14ae
Diffstat (limited to 'framework/inc/xml/imagesdocumenthandler.hxx')
-rw-r--r--framework/inc/xml/imagesdocumenthandler.hxx8
1 files changed, 4 insertions, 4 deletions
diff --git a/framework/inc/xml/imagesdocumenthandler.hxx b/framework/inc/xml/imagesdocumenthandler.hxx
index 921f3eb6d026..cbb83f07d297 100644
--- a/framework/inc/xml/imagesdocumenthandler.hxx
+++ b/framework/inc/xml/imagesdocumenthandler.hxx
@@ -150,19 +150,19 @@ class OWriteImagesDocumentHandler
::com::sun::star::uno::RuntimeException );
protected:
- virtual void WriteImageList( const ImageListItemDescriptor* ) throw
+ void WriteImageList( const ImageListItemDescriptor* ) throw
( ::com::sun::star::xml::sax::SAXException,
::com::sun::star::uno::RuntimeException );
- virtual void WriteExternalImageList( const ExternalImageItemListDescriptor* ) throw
+ void WriteExternalImageList( const ExternalImageItemListDescriptor* ) throw
( ::com::sun::star::xml::sax::SAXException,
::com::sun::star::uno::RuntimeException );
- virtual void WriteImage( const ImageItemDescriptor* ) throw
+ void WriteImage( const ImageItemDescriptor* ) throw
( ::com::sun::star::xml::sax::SAXException,
::com::sun::star::uno::RuntimeException );
- virtual void WriteExternalImage( const ExternalImageItemDescriptor* ) throw
+ void WriteExternalImage( const ExternalImageItemDescriptor* ) throw
( ::com::sun::star::xml::sax::SAXException,
::com::sun::star::uno::RuntimeException );