diff options
author | Noel Grandin <noel@peralex.com> | 2016-03-04 13:41:22 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-03-04 14:01:19 +0200 |
commit | 1fd781e7cd33f325ec7e467ecd49e0cb6ff4762b (patch) | |
tree | 9ede2ca7b2f7336365f675d9388dafc2a1994be6 /include | |
parent | a4c17041271eca2181cf11e5a0b59f4001c20cee (diff) |
loplugin:unuseddefaultparam in oox/reportdesign/sd
Change-Id: Ia26cf182ddc7c903d86bf74a8175858adb88121c
Diffstat (limited to 'include')
-rw-r--r-- | include/oox/core/fastparser.hxx | 2 | ||||
-rw-r--r-- | include/oox/helper/binaryinputstream.hxx | 4 | ||||
-rw-r--r-- | include/oox/helper/binaryoutputstream.hxx | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/include/oox/core/fastparser.hxx b/include/oox/core/fastparser.hxx index 946e6541dbb6..b1e42947e7ae 100644 --- a/include/oox/core/fastparser.hxx +++ b/include/oox/core/fastparser.hxx @@ -66,7 +66,7 @@ public: @param bCloseStream True = closes the passed stream after parsing. */ void parseStream( const css::uno::Reference< css::io::XInputStream >& rxInStream, - const OUString& rStreamName, bool bCloseStream = false ) + const OUString& rStreamName ) throw( css::xml::sax::SAXException, css::io::IOException, css::uno::RuntimeException ); /** Parses a stream from the passed storage with the specified name. diff --git a/include/oox/helper/binaryinputstream.hxx b/include/oox/helper/binaryinputstream.hxx index 101f1f0ad580..4655b8ab250f 100644 --- a/include/oox/helper/binaryinputstream.hxx +++ b/include/oox/helper/binaryinputstream.hxx @@ -186,9 +186,9 @@ public: */ OUString readCompressedUnicodeArray( sal_Int32 nChars, bool bCompressed, bool bAllowNulChars = false ); - /** Copies nBytes bytes from the current position to the passed output stream. + /** Copies bytes from the current position to the passed output stream. */ - void copyToStream( BinaryOutputStream& rOutStrm, sal_Int64 nBytes = SAL_MAX_INT64 ); + void copyToStream( BinaryOutputStream& rOutStrm ); protected: /** This dummy default c'tor will never call the c'tor of the virtual base diff --git a/include/oox/helper/binaryoutputstream.hxx b/include/oox/helper/binaryoutputstream.hxx index 8e315fadaa30..358e72c20515 100644 --- a/include/oox/helper/binaryoutputstream.hxx +++ b/include/oox/helper/binaryoutputstream.hxx @@ -75,9 +75,9 @@ public: void writeCompressedUnicodeArray( const OUString& rString, bool bCompressed ); - void writeCharArrayUC( const OUString& rString, rtl_TextEncoding eTextEnc, bool bAllowNulChars = false ); + void writeCharArrayUC( const OUString& rString, rtl_TextEncoding eTextEnc ); - void writeUnicodeArray( const OUString& rString, bool bAllowNulChars = false ); + void writeUnicodeArray( const OUString& rString ); protected: /** This dummy default c'tor will never call the c'tor of the virtual base |