summaryrefslogtreecommitdiff
path: root/sw/source/core/doc/tblrwcl.cxx
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-08-18 14:34:31 +0200
committerNoel Grandin <noel@peralex.com>2016-08-19 08:15:49 +0200
commita6a2b2826dbf248821147212a2ee9ecdcadd301f (patch)
tree25bd59c84e27aba2e947fd3df22409f10e106568 /sw/source/core/doc/tblrwcl.cxx
parentf97bc791b0879af3fd1bc2d1f7753ce5ffa6ac5e (diff)
loplugin:countusersofdefaultparams in sw
Change-Id: I668bfe93d77b06385544651583bcf71f6b5df2fc
Diffstat (limited to 'sw/source/core/doc/tblrwcl.cxx')
-rw-r--r--sw/source/core/doc/tblrwcl.cxx6
1 files changed, 3 insertions, 3 deletions
diff --git a/sw/source/core/doc/tblrwcl.cxx b/sw/source/core/doc/tblrwcl.cxx
index e1d8c3a59bf7..1b21c1b626a2 100644
--- a/sw/source/core/doc/tblrwcl.cxx
+++ b/sw/source/core/doc/tblrwcl.cxx
@@ -1376,11 +1376,11 @@ struct InsULPara
pLeftBox( pLeft )
{ bUL_LR = true; bUL = true; }
- void SetLeft( SwTableBox* pBox=nullptr )
+ void SetLeft( SwTableBox* pBox )
{ bUL_LR = false; bUL = true; if( pBox ) pInsBox = pBox; }
- void SetRight( SwTableBox* pBox=nullptr )
+ void SetRight( SwTableBox* pBox )
{ bUL_LR = false; bUL = false; if( pBox ) pInsBox = pBox; }
- void SetLower( SwTableLine* pLine=nullptr )
+ void SetLower( SwTableLine* pLine )
{ bUL_LR = true; bUL = false; if( pLine ) pInsLine = pLine; }
};