diff options
author | Noel Grandin <noel@peralex.com> | 2016-03-03 08:56:35 +0200 |
---|---|---|
committer | Noel Grandin <noel@peralex.com> | 2016-03-03 09:42:49 +0200 |
commit | b76842f63b19e9855fbdfee7c201ff73672464b6 (patch) | |
tree | 4f536710463b12facc661a90ddbd5993b538bb6f /include/editeng/tstpitem.hxx | |
parent | 4dedf654d83ddc22c93d98fe6c7225b8e1e416bd (diff) |
loplugin:unuseddefaultparams in editeng
Change-Id: I1dc0ba262c06bd69cf92aae20b344fe23f460f55
Diffstat (limited to 'include/editeng/tstpitem.hxx')
-rw-r--r-- | include/editeng/tstpitem.hxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/editeng/tstpitem.hxx b/include/editeng/tstpitem.hxx index 5a9667b04b51..14dc78a551fa 100644 --- a/include/editeng/tstpitem.hxx +++ b/include/editeng/tstpitem.hxx @@ -117,8 +117,7 @@ public: // unprivatized: sal_uInt16 Count() const { return maTabStops.size(); } bool Insert( const SvxTabStop& rTab ); - void Insert( const SvxTabStopItem* pTabs, sal_uInt16 nStart = 0, - sal_uInt16 nEnd = USHRT_MAX ); + void Insert( const SvxTabStopItem* pTabs, sal_uInt16 nStart = 0 ); void Remove( const sal_uInt16 nPos, const sal_uInt16 nLen = 1 ) { maTabStops.erase( maTabStops.begin() + nPos, maTabStops.begin() + nPos + nLen ); } |