diff options
Diffstat (limited to 'sdext/source/pdfimport')
-rw-r--r-- | sdext/source/pdfimport/sax/emitcontext.hxx | 2 | ||||
-rw-r--r-- | sdext/source/pdfimport/test/tests.cxx | 2 | ||||
-rw-r--r-- | sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.hxx | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/sdext/source/pdfimport/sax/emitcontext.hxx b/sdext/source/pdfimport/sax/emitcontext.hxx index a54fa7a7da95..677952c47290 100644 --- a/sdext/source/pdfimport/sax/emitcontext.hxx +++ b/sdext/source/pdfimport/sax/emitcontext.hxx @@ -38,7 +38,7 @@ namespace pdfi public: explicit SaxEmitter( const com::sun::star::uno::Reference< com::sun::star::xml::sax::XDocumentHandler >& xDocHdl ); - ~SaxEmitter(); + virtual ~SaxEmitter(); virtual void beginTag( const char* pTag, const PropertyMap& rProperties ) SAL_OVERRIDE; virtual void write( const OUString& rString ) SAL_OVERRIDE; diff --git a/sdext/source/pdfimport/test/tests.cxx b/sdext/source/pdfimport/test/tests.cxx index 5fe48aca521b..8bef0308adad 100644 --- a/sdext/source/pdfimport/test/tests.cxx +++ b/sdext/source/pdfimport/test/tests.cxx @@ -82,7 +82,7 @@ namespace m_bImageSeen(false) {} - ~TestSink() + virtual ~TestSink() { CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE( "A4 page size (in 100th of points): Width", m_aPageSize.Width, 79400, 0.00000001); CPPUNIT_ASSERT_DOUBLES_EQUAL_MESSAGE( "A4 page size (in 100th of points): Height" , m_aPageSize.Height, 59500, 0.0000001 ); diff --git a/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.hxx b/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.hxx index 760bfe70c170..067a132f0be4 100644 --- a/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.hxx +++ b/sdext/source/pdfimport/xpdfwrapper/pdfioutdev_gpl.hxx @@ -149,7 +149,7 @@ namespace pdfi public: explicit PDFOutDev( PDFDoc* pDoc ); - ~PDFOutDev(); + virtual ~PDFOutDev(); //----- get info about output device |