From 15246c959ae5ab4e124859a4d8981676f9eb657f Mon Sep 17 00:00:00 2001 From: Alexander Wilms Date: Tue, 25 Feb 2014 18:36:00 +0100 Subject: Remove visual noise from extensions MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Change-Id: I0397d0d0e5343b7ed192a790664b068ac6955bd3 Reviewed-on: https://gerrit.libreoffice.org/8259 Tested-by: Caolán McNamara Reviewed-by: Caolán McNamara --- extensions/source/propctrlr/standardcontrol.cxx | 70 ++++++++++++------------- 1 file changed, 35 insertions(+), 35 deletions(-) (limited to 'extensions/source/propctrlr/standardcontrol.cxx') diff --git a/extensions/source/propctrlr/standardcontrol.cxx b/extensions/source/propctrlr/standardcontrol.cxx index 5a33afdfb6a7..7d7d38a2d97e 100644 --- a/extensions/source/propctrlr/standardcontrol.cxx +++ b/extensions/source/propctrlr/standardcontrol.cxx @@ -30,12 +30,12 @@ #include #include -//================================================================== + // ugly dependencies for the OColorControl #include #include #include -//================================================================== + #include #include #include @@ -45,16 +45,16 @@ #include #include #include -//================================================================== + #include #include #include -//............................................................................ + namespace pcr { -//............................................................................ + using namespace ::com::sun::star; using namespace ::com::sun::star::uno; @@ -64,9 +64,9 @@ namespace pcr using namespace ::com::sun::star::beans; using namespace ::com::sun::star::inspection; - //================================================================== + //= OTimeControl - //================================================================== + OTimeControl::OTimeControl( Window* pParent, WinBits nWinStyle ) :OTimeControl_Base( PropertyControlType::TimeField, pParent, nWinStyle ) @@ -109,9 +109,9 @@ namespace pcr return ::getCppuType( static_cast< util::Time* >( NULL ) ); } - //================================================================== + //= ODateControl - //================================================================== + ODateControl::ODateControl( Window* pParent, WinBits nWinStyle ) :ODateControl_Base( PropertyControlType::DateField, pParent, nWinStyle | WB_DROPDOWN ) @@ -163,9 +163,9 @@ namespace pcr return ::getCppuType( static_cast< util::Date* >( NULL ) ); } - //================================================================== + //= OEditControl - //================================================================== + OEditControl::OEditControl(Window* _pParent, sal_Bool _bPW, WinBits _nWinStyle) :OEditControl_Base( _bPW ? PropertyControlType::CharacterField : PropertyControlType::TextField, _pParent, _nWinStyle ) @@ -249,9 +249,9 @@ namespace pcr return n; } - //================================================================== + // class ODateTimeControl - //================================================================== + ODateTimeControl::ODateTimeControl( Window* _pParent, WinBits _nWinStyle) :ODateTimeControl_Base( PropertyControlType::DateTimeField, _pParent, _nWinStyle ) @@ -322,9 +322,9 @@ namespace pcr return ::getCppuType( static_cast< util::DateTime* >( NULL ) ); } - //======================================================================== + //= HyperlinkInput - //======================================================================== + HyperlinkInput::HyperlinkInput( Window* _pParent, WinBits _nWinStyle ) :Edit( _pParent, _nWinStyle ) @@ -407,9 +407,9 @@ namespace pcr impl_checkEndClick( rTEvt.GetMouseEvent() ); } - //======================================================================== + //= OHyperlinkControl - //======================================================================== + OHyperlinkControl::OHyperlinkControl( Window* _pParent, WinBits _nWinStyle ) :OHyperlinkControl_Base( PropertyControlType::HyperlinkField, _pParent, _nWinStyle ) @@ -473,9 +473,9 @@ namespace pcr return 0; } - //================================================================== + //= ONumericControl - //================================================================== + ONumericControl::ONumericControl( Window* _pParent, WinBits _nWinStyle ) :ONumericControl_Base( PropertyControlType::NumericField, _pParent, _nWinStyle ) @@ -643,9 +643,9 @@ namespace pcr return ::getCppuType( static_cast< double* >( NULL ) ); } - //================================================================== + //= OColorControl - //================================================================== + #define LB_DEFAULT_COUNT 20 OUString MakeHexStr(sal_uInt32 nVal, sal_Int32 nLength) @@ -794,9 +794,9 @@ namespace pcr m_aImplControl.notifyModifiedValue(); } - //================================================================== + //= OListboxControl - //================================================================== + OListboxControl::OListboxControl( Window* pParent, WinBits nWinStyle) :OListboxControl_Base( PropertyControlType::ListBox, pParent, nWinStyle ) @@ -886,9 +886,9 @@ namespace pcr m_aImplControl.notifyModifiedValue(); } - //================================================================== + //= OComboboxControl - //================================================================== + OComboboxControl::OComboboxControl( Window* pParent, WinBits nWinStyle) :OComboboxControl_Base( PropertyControlType::ComboBox, pParent, nWinStyle ) @@ -955,9 +955,9 @@ namespace pcr return 0L; } - //================================================================== + //= OMultilineFloatingEdit - //================================================================== + class OMultilineFloatingEdit : public FloatingWindow { private: @@ -1018,9 +1018,9 @@ namespace pcr return nResult; } - //================================================================== + //= DropDownEditControl_Base - //================================================================== + DropDownEditControl::DropDownEditControl( Window* _pParent, WinBits _nStyle ) :DropDownEditControl_Base( _pParent, _nStyle ) @@ -1155,7 +1155,7 @@ namespace pcr namespace { - //.............................................................. + StlSyntaxSequence< OUString > lcl_convertMultiLineToList( const OUString& _rCompsedTextWithLineBreaks ) { sal_Int32 nLines = comphelper::string::getTokenCount(_rCompsedTextWithLineBreaks, '\n'); @@ -1180,7 +1180,7 @@ namespace pcr return sMultiLineText; } - //.............................................................. + OUString lcl_convertListToDisplayText( const StlSyntaxSequence< OUString >& _rStrings ) { OUStringBuffer aComposed; @@ -1351,9 +1351,9 @@ namespace pcr return GetText(); } - //================================================================== + //= OMultilineEditControl - //================================================================== + OMultilineEditControl::OMultilineEditControl( Window* pParent, MultiLineOperationMode _eMode, WinBits nWinStyle ) :OMultilineEditControl_Base( _eMode == eMultiLineText ? PropertyControlType::MultiLineTextField : PropertyControlType::StringListField @@ -1416,8 +1416,8 @@ namespace pcr return ::getCppuType( static_cast< Sequence< OUString >* >( NULL ) ); } -//............................................................................ + } // namespace pcr -//............................................................................ + /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ -- cgit