diff options
author | Chris Sherlock <chris.sherlock79@gmail.com> | 2016-02-09 18:16:42 +1100 |
---|---|---|
committer | Chris Sherlock <chris.sherlock79@gmail.com> | 2016-02-09 08:18:05 +0000 |
commit | a238b1f8d304bf1e2ffb357937f3ec888ee8ac89 (patch) | |
tree | 083c0582d4bf80e313ed256ca476ba8f69c7f7a6 /include/sfx2/itemconnect.hxx | |
parent | 538f276ae0414ea34ede6090b5f56e8fecd6fc65 (diff) |
Remove excess newlines
A ridiculously fast way of doing this is:
for i in $(pcregrep -l -M -r --include='.*[hc]xx$' \
--exclude-dir=workdir --exclude-dir=instdir '^
{3,}' .)
do
perl -0777 -i -pe 's/^
{3,}/
/gm' $i
done
Change-Id: Iebb93eccbee9e4fc5c4380474ba595858a27ac2c
Reviewed-on: https://gerrit.libreoffice.org/22224
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Chris Sherlock <chris.sherlock79@gmail.com>
Diffstat (limited to 'include/sfx2/itemconnect.hxx')
-rw-r--r-- | include/sfx2/itemconnect.hxx | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/include/sfx2/itemconnect.hxx b/include/sfx2/itemconnect.hxx index a414b461415c..95cc97f9f229 100644 --- a/include/sfx2/itemconnect.hxx +++ b/include/sfx2/itemconnect.hxx @@ -213,7 +213,6 @@ private: }; - /** Base class template for single item <-> single control connection objects. This template uses functions provided by the SingleItemWrapper and the @@ -290,12 +289,10 @@ private: }; - /** Connection between an SfxBoolItem and a VCL CheckBox. */ typedef ItemControlConnection< BoolItemWrapper, CheckBoxWrapper > CheckBoxConnection; - /** Connection between an item and the VCL NumericField. */ template< typename ItemWrpT > class NumericConnection : public ItemControlConnection< ItemWrpT, @@ -313,10 +310,6 @@ public: }; - - - - /** Connection between an item and the VCL MetricField. Adds support of different field units during control value <-> item value @@ -340,7 +333,6 @@ public: }; - /** Connection between an item and a VCL ListBox. Optionally a map can be passed that maps list box positions to item values. @@ -366,10 +358,6 @@ public: }; - - - - /** Connection between an item and an SVTOOLS ValueSet. Optionally a map can be passed that maps value set identifiers to item @@ -395,9 +383,6 @@ public: }; - - - // Array of connections @@ -430,12 +415,9 @@ private: }; - - // *** Implementation of template functions *** - // Base connection classes @@ -519,7 +501,6 @@ NumericConnection< ItemWrpT >::NumericConnection( } - template< typename ItemWrpT > MetricConnection< ItemWrpT >::MetricConnection( sal_uInt16 nSlot, MetricField& rField, FieldUnit eItemUnit, ItemConnFlags nFlags ) : @@ -528,7 +509,6 @@ MetricConnection< ItemWrpT >::MetricConnection( } - template< typename ItemWrpT > ListBoxConnection< ItemWrpT >::ListBoxConnection( sal_uInt16 nSlot, ListBox& rListBox, const MapEntryType* pMap, ItemConnFlags nFlags ) : @@ -537,7 +517,6 @@ ListBoxConnection< ItemWrpT >::ListBoxConnection( } - template< typename ItemWrpT > ValueSetConnection< ItemWrpT >::ValueSetConnection( sal_uInt16 nSlot, ValueSet& rValueSet, const MapEntryType* pMap, ItemConnFlags nFlags ) : @@ -546,7 +525,6 @@ ValueSetConnection< ItemWrpT >::ValueSetConnection( } - } // namespace sfx #endif |