summaryrefslogtreecommitdiffstats
path: root/include/oox/dump
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-11-28 16:29:28 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-11-29 10:01:45 +0100
commit6a3413a2336433b1359db95cdf52eec0c93b632e (patch)
tree11cb8fa3329b6ad8fa5e77a349c706133f510e9c /include/oox/dump
parentclang-format: don't pick up non-existing binary from PATH (diff)
downloadcore-6a3413a2336433b1359db95cdf52eec0c93b632e.tar.gz
core-6a3413a2336433b1359db95cdf52eec0c93b632e.zip
loplugin:countusersofdefaultparams in include/oox..vcl
Change-Id: If831bce4cd1fe2c5233159b31c239b813629e0de Reviewed-on: https://gerrit.libreoffice.org/45420 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/oox/dump')
-rw-r--r--include/oox/dump/dumperbase.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/oox/dump/dumperbase.hxx b/include/oox/dump/dumperbase.hxx
index dcde6ff1808f..97a36f3699ba 100644
--- a/include/oox/dump/dumperbase.hxx
+++ b/include/oox/dump/dumperbase.hxx
@@ -248,8 +248,8 @@ class StringHelper
public:
// append string to string ------------------------------------------------
- static void appendChar( OUStringBuffer& rStr, sal_Unicode cChar, sal_Int32 nCount = 1 );
- static void appendString( OUStringBuffer& rStr, const OUString& rData, sal_Int32 nWidth = 0, sal_Unicode cFill = ' ' );
+ static void appendChar( OUStringBuffer& rStr, sal_Unicode cChar, sal_Int32 nCount );
+ static void appendString( OUStringBuffer& rStr, const OUString& rData, sal_Int32 nWidth, sal_Unicode cFill = ' ' );
// append decimal ---------------------------------------------------------
@@ -313,7 +313,7 @@ public:
// encoded text output ----------------------------------------------------
static void appendCChar( OUStringBuffer& rStr, sal_Unicode cChar, bool bPrefix = true );
- static void appendEncChar( OUStringBuffer& rStr, sal_Unicode cChar, sal_Int32 nCount = 1, bool bPrefix = true );
+ static void appendEncChar( OUStringBuffer& rStr, sal_Unicode cChar, sal_Int32 nCount, bool bPrefix = true );
static void appendEncString( OUStringBuffer& rStr, const OUString& rData, bool bPrefix = true );
// token list -------------------------------------------------------------
@@ -967,7 +967,7 @@ public:
void writeBin( Type nData, bool bDots = true )
{ StringHelper::appendBin( maLine, nData, bDots ); }
template< typename Type >
- void writeFix( Type nData, sal_Int32 nWidth = 0 )
+ void writeFix( Type nData, sal_Int32 nWidth )
{ StringHelper::appendFix( maLine, nData, nWidth ); }
template< typename Type >
void writeValue( Type nData, FormatType eFmtType )
@@ -1367,7 +1367,7 @@ protected:
virtual bool implIsValid() const override;
void skipBlock( sal_Int64 nBytes, bool bShowSize = true );
- void dumpRawBinary( sal_Int64 nBytes, bool bShowOffset = true, bool bStream = false );
+ void dumpRawBinary( sal_Int64 nBytes, bool bShowOffset, bool bStream = false );
void dumpBinary( const String& rName, sal_Int64 nBytes, bool bShowOffset = true );
void dumpRemaining( sal_Int64 nBytes );