diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2016-03-08 17:08:34 +0100 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2016-03-08 17:08:34 +0100 |
commit | b9a25b254b93568607285f9396c87f4286d7132e (patch) | |
tree | 846ec916e6d21d15286efab45897092fe19ddf9e /sdext | |
parent | 7fd9579c36688bc857022c8a0805f7da539fb92e (diff) |
Various loplugin warnings
Change-Id: I7a405bc22d6ff337d53ad2c187f2ae1726798bb5
Diffstat (limited to 'sdext')
-rw-r--r-- | sdext/source/pdfimport/sax/emitcontext.cxx | 8 | ||||
-rw-r--r-- | sdext/source/pdfimport/tree/genericelements.hxx | 2 |
2 files changed, 5 insertions, 5 deletions
diff --git a/sdext/source/pdfimport/sax/emitcontext.cxx b/sdext/source/pdfimport/sax/emitcontext.cxx index f81651005984..52616466e71b 100644 --- a/sdext/source/pdfimport/sax/emitcontext.cxx +++ b/sdext/source/pdfimport/sax/emitcontext.cxx @@ -29,7 +29,7 @@ #if OSL_DEBUG_LEVEL > 0 #include <osl/file.hxx> -static osl::File* pStream = NULL; +static osl::File* pStream = nullptr; static int nIndent = 0; #endif @@ -58,7 +58,7 @@ SaxEmitter::SaxEmitter( const uno::Reference< xml::sax::XDocumentHandler >& xDoc osl_getFileURLFromSystemPath( aStr.pData, &aFileURL.pData ); OUStringBuffer aBuf( 256 ); aBuf.append( aFileURL ); - aBuf.appendAscii( "/pdfimport.xml" ); + aBuf.append( "/pdfimport.xml" ); pStream = new osl::File( aBuf.makeStringAndClear() ); if( pStream->open( osl_File_OpenFlag_Write | osl_File_OpenFlag_Create ) ) { @@ -67,7 +67,7 @@ SaxEmitter::SaxEmitter( const uno::Reference< xml::sax::XDocumentHandler >& xDoc } } else - pStream = 0; + pStream = nullptr; #endif } @@ -85,7 +85,7 @@ SaxEmitter::~SaxEmitter() { pStream->close(); delete pStream; - pStream = 0; + pStream = nullptr; } #endif } diff --git a/sdext/source/pdfimport/tree/genericelements.hxx b/sdext/source/pdfimport/tree/genericelements.hxx index 6fac29035466..fbed71e5b837 100644 --- a/sdext/source/pdfimport/tree/genericelements.hxx +++ b/sdext/source/pdfimport/tree/genericelements.hxx @@ -218,7 +218,7 @@ namespace pdfi void updateGeometry(); #if OSL_DEBUG_LEVEL > 0 - virtual void emitStructure( int nLevel ); + virtual void emitStructure( int nLevel ) override; #endif basegfx::B2DPolyPolygon PolyPoly; |