diff options
author | Caolán McNamara <caolanm@redhat.com> | 2014-04-15 21:24:37 +0100 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2014-04-16 11:23:14 +0100 |
commit | 187a513742725c683555f251350604153c5f9fb4 (patch) | |
tree | 87691d96e8123f895286ce1cb77079d384778bec /include | |
parent | 46401db853bea6dbf0ef3495d0a4002eefd13087 (diff) |
coverity#1202981 Non-virtual destructor
Change-Id: Iabf91e6c8e450b72b83de51c6a1fb6986f88b430
Diffstat (limited to 'include')
-rw-r--r-- | include/filter/msfilter/escherex.hxx | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/include/filter/msfilter/escherex.hxx b/include/filter/msfilter/escherex.hxx index dd2da0cbe237..1b86971ea1b8 100644 --- a/include/filter/msfilter/escherex.hxx +++ b/include/filter/msfilter/escherex.hxx @@ -1107,9 +1107,8 @@ public: void SetBaseURI( const OUString& rBaseURI ) { maBaseURI = rBaseURI; }; const OUString& GetBaseURI() { return maBaseURI; }; - EscherGraphicProvider( sal_uInt32 nFlags = _E_GRAPH_PROV_DO_NOT_ROTATE_METAFILES ); - ~EscherGraphicProvider(); - + EscherGraphicProvider( sal_uInt32 nFlags = _E_GRAPH_PROV_DO_NOT_ROTATE_METAFILES ); + virtual ~EscherGraphicProvider(); }; struct EscherShapeListEntry; @@ -1604,7 +1603,7 @@ public: /** Returns the graphic provider from the global object that has been passed to the constructor. */ - inline EscherGraphicProvider& GetGraphicProvider() { return *mxGlobal; } + EscherGraphicProvider& GetGraphicProvider() { return *mxGlobal; } /** Called if a picture shall be written and no picture stream is set at class ImplEscherExSdr. |