summaryrefslogtreecommitdiff
path: root/include/sfx2/controlwrapper.hxx
diff options
context:
space:
mode:
authorChris Sherlock <chris.sherlock79@gmail.com>2016-02-09 18:16:42 +1100
committerChris Sherlock <chris.sherlock79@gmail.com>2016-02-09 08:18:05 +0000
commita238b1f8d304bf1e2ffb357937f3ec888ee8ac89 (patch)
tree083c0582d4bf80e313ed256ca476ba8f69c7f7a6 /include/sfx2/controlwrapper.hxx
parent538f276ae0414ea34ede6090b5f56e8fecd6fc65 (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/controlwrapper.hxx')
-rw-r--r--include/sfx2/controlwrapper.hxx33
1 files changed, 0 insertions, 33 deletions
diff --git a/include/sfx2/controlwrapper.hxx b/include/sfx2/controlwrapper.hxx
index a01b9d114a1f..d56e7f26aba8 100644
--- a/include/sfx2/controlwrapper.hxx
+++ b/include/sfx2/controlwrapper.hxx
@@ -34,11 +34,9 @@
#include <svtools/ctrlbox.hxx>
-
namespace sfx {
-
/** List position type of VCL ListBox. */
typedef sal_uInt16 ListBoxPosType;
/** List position type of SVTOOLS ValueSet. */
@@ -212,7 +210,6 @@ private:
};
-
/** A dummy wrapper for a VCL Window that does nothing special.
This wrapper is used to implement the DummyItemConnection. It does not
@@ -233,7 +230,6 @@ public:
};
-
/** A wrapper for the VCL CheckBox. */
class SFX2_DLLPUBLIC CheckBoxWrapper:
public SingleControlWrapper< CheckBox, bool >
@@ -249,7 +245,6 @@ public:
};
-
/** A wrapper for the SVTOOLS ColorListBox. */
class SFX2_DLLPUBLIC ColorListBoxWrapper:
public SingleControlWrapper< ColorListBox, Color >
@@ -270,7 +265,6 @@ public:
};
-
/** A wrapper for the VCL NumericField. */
template< typename ValueT >
class NumericFieldWrapper : public SingleControlWrapper< NumericField, ValueT >
@@ -287,11 +281,6 @@ public:
};
-
-
-
-
-
/** A wrapper for the VCL MetricField.
Adds support for field units during accessing the control value. The
@@ -316,8 +305,6 @@ private:
};
-
-
#define WRAPPER_LISTBOX_ENTRY_NOTFOUND 0xFFFF /* XXX was value of LISTBOX_ENTRY_NOTFOUND */
/** A wrapper for the VCL ListBox.
@@ -351,11 +338,6 @@ public:
};
-
-
-
-
-
#define WRAPPER_VALUESET_ITEM_NOTFOUND 0xFFFF /* XXX was value of VALUESET_ITEM_NOTFOUND */
/** A wrapper for the SVTOOLS ValueSet.
@@ -389,10 +371,6 @@ public:
};
-
-
-
-
// Multi control wrappers
@@ -428,7 +406,6 @@ private:
};
-
/** A multi control wrapper with extended interface.
This template class extends the MultiControlWrapperHelper class by the
@@ -465,13 +442,9 @@ private:
};
-
-
-
// *** Implementation of template functions ***
-
// Helpers
@@ -525,7 +498,6 @@ inline void SingleControlWrapper< ControlT, ValueT >::ModifyControl( TriState eE
}
-
template< typename ValueT >
bool NumericFieldWrapper< ValueT >::IsControlDontKnow() const
{
@@ -552,7 +524,6 @@ void NumericFieldWrapper< ValueT >::SetControlValue( ValueT nValue )
}
-
template< typename ValueT >
bool MetricFieldWrapper< ValueT >::IsControlDontKnow() const
{
@@ -579,7 +550,6 @@ void MetricFieldWrapper< ValueT >::SetControlValue( ValueT nValue )
}
-
template< typename ValueT >
ValueT ListBoxWrapper< ValueT >::GetControlValue() const
{
@@ -595,7 +565,6 @@ void ListBoxWrapper< ValueT >::SetControlValue( ValueT nValue )
}
-
template< typename ValueT >
ValueT ValueSetWrapper< ValueT >::GetControlValue() const
{
@@ -611,8 +580,6 @@ void ValueSetWrapper< ValueT >::SetControlValue( ValueT nValue )
}
-
-
} // namespace sfx
#endif