diff options
author | Jochen Nitschke <j.nitschke+logerrit@ok.de> | 2016-11-02 16:04:29 +0100 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2016-11-03 06:34:22 +0000 |
commit | fa80dae9a79a7414af8adcb91bc04dfff13bbb63 (patch) | |
tree | aa7bd54cf7f64065aa954e24406687ea9757bc13 /include/svl | |
parent | 1bbf7f653b6b159afb0bf2c34dd463f58333852c (diff) |
remove unnecessary casts
Which IDs are always sal_uInt16 and likely passed from defines
Change-Id: I134358289ccd338ef1ff6ba963e25a524e790f4e
Reviewed-on: https://gerrit.libreoffice.org/30498
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include/svl')
-rw-r--r-- | include/svl/itemset.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/svl/itemset.hxx b/include/svl/itemset.hxx index f327f92792eb..5793007eb350 100644 --- a/include/svl/itemset.hxx +++ b/include/svl/itemset.hxx @@ -66,7 +66,7 @@ public: SfxItemSet( SfxItemPool&); SfxItemSet( SfxItemPool&, sal_uInt16 nWhich1, sal_uInt16 nWhich2 ); - SfxItemSet( SfxItemPool&, int nWh1, int nWh2, int nNull, ... ); + SfxItemSet( SfxItemPool&, sal_uInt16 nWh1, sal_uInt16 nWh2, sal_uInt16 nNull, ... ); SfxItemSet( SfxItemPool&, const sal_uInt16* nWhichPairTable ); virtual ~SfxItemSet(); |