diff options
author | Noel Grandin <noel@peralex.com> | 2015-01-27 07:32:01 +0200 |
---|---|---|
committer | Noel Grandin <noelgrandin@gmail.com> | 2015-01-28 06:19:49 +0000 |
commit | fe480d8136b204c8dc6c68916cce7e816f8b9c48 (patch) | |
tree | 656e9239fa6a93099148d3806c1af93007059769 /include/sfx2 | |
parent | d1c9bd13ec7af93f5368dfda6d6d3c955f0b0816 (diff) |
remove unused typedefs
found with some minor modifications to find/find-unused-defines.sh
Change-Id: I18cc479adedc7a0dada68a4aeef08300e62631dd
Reviewed-on: https://gerrit.libreoffice.org/14194
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'include/sfx2')
-rw-r--r-- | include/sfx2/controlwrapper.hxx | 7 | ||||
-rw-r--r-- | include/sfx2/fcontnr.hxx | 2 | ||||
-rw-r--r-- | include/sfx2/itemconnect.hxx | 8 |
3 files changed, 0 insertions, 17 deletions
diff --git a/include/sfx2/controlwrapper.hxx b/include/sfx2/controlwrapper.hxx index 91b79b04f396..d37ffc5a0458 100644 --- a/include/sfx2/controlwrapper.hxx +++ b/include/sfx2/controlwrapper.hxx @@ -289,9 +289,7 @@ public: -typedef NumericFieldWrapper< sal_Int16 > Int16NumericFieldWrapper; typedef NumericFieldWrapper< sal_uInt16 > UInt16NumericFieldWrapper; -typedef NumericFieldWrapper< sal_Int32 > Int32NumericFieldWrapper; typedef NumericFieldWrapper< sal_uInt32 > UInt32NumericFieldWrapper; typedef NumericFieldWrapper< sal_uInt16 > UShortNumericFieldWrapper; @@ -326,7 +324,6 @@ private: typedef MetricFieldWrapper< sal_Int16 > Int16MetricFieldWrapper; typedef MetricFieldWrapper< sal_uInt16 > UInt16MetricFieldWrapper; -typedef MetricFieldWrapper< sal_Int32 > Int32MetricFieldWrapper; typedef MetricFieldWrapper< sal_uInt32 > UInt32MetricFieldWrapper; typedef MetricFieldWrapper< sal_uInt16 > UShortMetricFieldWrapper; @@ -368,9 +365,7 @@ public: -typedef ListBoxWrapper< sal_Int16 > Int16ListBoxWrapper; typedef ListBoxWrapper< sal_uInt16 > UInt16ListBoxWrapper; -typedef ListBoxWrapper< sal_Int32 > Int32ListBoxWrapper; typedef ListBoxWrapper< sal_uInt32 > UInt32ListBoxWrapper; typedef ListBoxWrapper< sal_uInt16 > UShortListBoxWrapper; @@ -412,9 +407,7 @@ public: -typedef ValueSetWrapper< sal_Int16 > Int16ValueSetWrapper; typedef ValueSetWrapper< sal_uInt16 > UInt16ValueSetWrapper; -typedef ValueSetWrapper< sal_Int32 > Int32ValueSetWrapper; typedef ValueSetWrapper< sal_uInt32 > UInt32ValueSetWrapper; typedef ValueSetWrapper< sal_uInt16 > UShortValueSetWrapper; diff --git a/include/sfx2/fcontnr.hxx b/include/sfx2/fcontnr.hxx index 450e83857c80..758a73e80b4d 100644 --- a/include/sfx2/fcontnr.hxx +++ b/include/sfx2/fcontnr.hxx @@ -42,8 +42,6 @@ class SfxMedium; class SfxFilterContainer_Impl; class SfxFrame; -//#define SFX_FILTER_CONTAINER_FACTORY 1 -typedef sal_uInt16 SfxFilterContainerFlags; class SfxRefItem : public SfxPoolItem { diff --git a/include/sfx2/itemconnect.hxx b/include/sfx2/itemconnect.hxx index 79fce0c4c5dd..81a869edb3eb 100644 --- a/include/sfx2/itemconnect.hxx +++ b/include/sfx2/itemconnect.hxx @@ -323,9 +323,7 @@ public: -typedef NumericConnection< Int16ItemWrapper > Int16NumericConnection; typedef NumericConnection< UInt16ItemWrapper > UInt16NumericConnection; -typedef NumericConnection< Int32ItemWrapper > Int32NumericConnection; typedef NumericConnection< UInt32ItemWrapper > UInt32NumericConnection; @@ -354,9 +352,7 @@ public: -typedef MetricConnection< Int16ItemWrapper > Int16MetricConnection; typedef MetricConnection< UInt16ItemWrapper > UInt16MetricConnection; -typedef MetricConnection< Int32ItemWrapper > Int32MetricConnection; typedef MetricConnection< UInt32ItemWrapper > UInt32MetricConnection; @@ -387,9 +383,7 @@ public: -typedef ListBoxConnection< Int16ItemWrapper > Int16ListBoxConnection; typedef ListBoxConnection< UInt16ItemWrapper > UInt16ListBoxConnection; -typedef ListBoxConnection< Int32ItemWrapper > Int32ListBoxConnection; typedef ListBoxConnection< UInt32ItemWrapper > UInt32ListBoxConnection; @@ -420,9 +414,7 @@ public: -typedef ValueSetConnection< Int16ItemWrapper > Int16ValueSetConnection; typedef ValueSetConnection< UInt16ItemWrapper > UInt16ValueSetConnection; -typedef ValueSetConnection< Int32ItemWrapper > Int32ValueSetConnection; typedef ValueSetConnection< UInt32ItemWrapper > UInt32ValueSetConnection; |