You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openoffice.apache.org by ms...@apache.org on 2022/04/04 15:07:07 UTC

[openoffice] branch trunk updated: Cleaned up files, removed whitespace

This is an automated email from the ASF dual-hosted git repository.

mseidel pushed a commit to branch trunk
in repository https://gitbox.apache.org/repos/asf/openoffice.git


The following commit(s) were added to refs/heads/trunk by this push:
     new 6469a73784 Cleaned up files, removed whitespace
6469a73784 is described below

commit 6469a73784863b8736ef040aff965837be95ed75
Author: mseidel <ms...@apache.org>
AuthorDate: Mon Apr 4 17:06:48 2022 +0200

    Cleaned up files, removed whitespace
---
 .../source/sidebar/text/TextUnderlineControl.cxx   | 250 +++++++++++----------
 .../source/sidebar/text/TextUnderlineControl.hxx   |  27 +--
 .../svx/source/sidebar/text/TextUnderlinePopup.cxx |  32 +--
 .../svx/source/sidebar/text/TextUnderlinePopup.hxx |  24 +-
 4 files changed, 168 insertions(+), 165 deletions(-)

diff --git a/main/svx/source/sidebar/text/TextUnderlineControl.cxx b/main/svx/source/sidebar/text/TextUnderlineControl.cxx
index de1a1725a1..908f8ad4f5 100644
--- a/main/svx/source/sidebar/text/TextUnderlineControl.cxx
+++ b/main/svx/source/sidebar/text/TextUnderlineControl.cxx
@@ -1,5 +1,5 @@
 /**************************************************************
- * 
+ *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information
@@ -7,18 +7,20 @@
  * to you under the Apache License, Version 2.0 (the
  * "License"); you may not use this file except in compliance
  * with the License.  You may obtain a copy of the License at
- * 
+ *
  *   http://www.apache.org/licenses/LICENSE-2.0
- * 
+ *
  * Unless required by applicable law or agreed to in writing,
  * software distributed under the License is distributed on an
  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  * KIND, either express or implied.  See the License for the
  * specific language governing permissions and limitations
  * under the License.
- * 
+ *
  *************************************************************/
 
+
+
 #include "precompiled_svx.hxx"
 #include "TextUnderlineControl.hxx"
 #include "TextPropertyPanel.hrc"
@@ -35,9 +37,9 @@
 namespace svx { namespace sidebar {
 
 TextUnderlineControl::TextUnderlineControl (
-    Window* pParent,
-    svx::sidebar::TextPropertyPanel& rPanel,
-    SfxBindings* pBindings)
+	Window* pParent,
+	svx::sidebar::TextPropertyPanel& rPanel,
+	SfxBindings* pBindings)
 :	svx::sidebar::PopupControl( pParent,SVX_RES(RID_POPUPPANEL_TEXTPAGE_UNDERLINE))
 ,	mrTextPropertyPanel(rPanel)
 ,	mpBindings(pBindings)
@@ -85,164 +87,164 @@ TextUnderlineControl::TextUnderlineControl (
 
 void TextUnderlineControl::initial()
 {
-    maVSUnderline.SetColor(GetSettings().GetStyleSettings().GetHighContrastMode()?
-        GetSettings().GetStyleSettings().GetMenuColor():
-        sfx2::sidebar::Theme::GetColor( sfx2::sidebar::Theme::Paint_PanelBackground ));
-    maVSUnderline.SetBackground(GetSettings().GetStyleSettings().GetHighContrastMode()?
-        GetSettings().GetStyleSettings().GetMenuColor():
-        sfx2::sidebar::Theme::GetColor( sfx2::sidebar::Theme::Paint_PanelBackground ));
+	maVSUnderline.SetColor(GetSettings().GetStyleSettings().GetHighContrastMode()?
+		GetSettings().GetStyleSettings().GetMenuColor():
+		sfx2::sidebar::Theme::GetColor( sfx2::sidebar::Theme::Paint_PanelBackground ));
+	maVSUnderline.SetBackground(GetSettings().GetStyleSettings().GetHighContrastMode()?
+		GetSettings().GetStyleSettings().GetMenuColor():
+		sfx2::sidebar::Theme::GetColor( sfx2::sidebar::Theme::Paint_PanelBackground ));
 
-    Link aLink = LINK( this, TextUnderlineControl, PBClickHdl ) ;
-    maPBOptions.SetClickHdl(aLink);
+	Link aLink = LINK( this, TextUnderlineControl, PBClickHdl ) ;
+	maPBOptions.SetClickHdl(aLink);
 
-    maVSUnderline.SetStyle( maVSUnderline.GetStyle()| WB_3DLOOK | WB_NO_DIRECTSELECT );
+	maVSUnderline.SetStyle( maVSUnderline.GetStyle()| WB_3DLOOK | WB_NO_DIRECTSELECT );
 
-    // 'none' item
-    maVSUnderline.SetStyle( maVSUnderline.GetStyle()| WB_NONEFIELD | WB_MENUSTYLEVALUESET );
-    maVSUnderline.SetText( String(SVX_RES(STR_WITHOUT) ) );
+	// 'none' item
+	maVSUnderline.SetStyle( maVSUnderline.GetStyle()| WB_NONEFIELD | WB_MENUSTYLEVALUESET );
+	maVSUnderline.SetText( String(SVX_RES(STR_WITHOUT) ) );
 
-    maVSUnderline.InsertItem(1, maIMGSingle ,String(SVX_RES(STR_SINGLE)));
-    maVSUnderline.SetItemData(1, (void*)(sal_uInt64)UNDERLINE_SINGLE);
+	maVSUnderline.InsertItem(1, maIMGSingle ,String(SVX_RES(STR_SINGLE)));
+	maVSUnderline.SetItemData(1, (void*)(sal_uInt64)UNDERLINE_SINGLE);
 
-    maVSUnderline.InsertItem(2, maIMGDouble ,String(SVX_RES(STR_DOUBLE)));
-    maVSUnderline.SetItemData(2, (void*)(sal_uInt64)UNDERLINE_DOUBLE);
+	maVSUnderline.InsertItem(2, maIMGDouble ,String(SVX_RES(STR_DOUBLE)));
+	maVSUnderline.SetItemData(2, (void*)(sal_uInt64)UNDERLINE_DOUBLE);
 
-    maVSUnderline.InsertItem(3, maIMGBold, String(SVX_RES(STR_BOLD)));
-    maVSUnderline.SetItemData(3,(void*)(sal_uInt64)UNDERLINE_BOLD);
+	maVSUnderline.InsertItem(3, maIMGBold, String(SVX_RES(STR_BOLD)));
+	maVSUnderline.SetItemData(3,(void*)(sal_uInt64)UNDERLINE_BOLD);
 
-    maVSUnderline.InsertItem(4, maIMGDot, String(SVX_RES(STR_DOT)));
-    maVSUnderline.SetItemData(4,(void*)(sal_uInt64)UNDERLINE_DOTTED);
+	maVSUnderline.InsertItem(4, maIMGDot, String(SVX_RES(STR_DOT)));
+	maVSUnderline.SetItemData(4,(void*)(sal_uInt64)UNDERLINE_DOTTED);
 
-    maVSUnderline.InsertItem(5, maIMGDotBold, String(SVX_RES(STR_DOT_BOLD)));
-    maVSUnderline.SetItemData(5,(void*)(sal_uInt64)UNDERLINE_BOLDDOTTED);
+	maVSUnderline.InsertItem(5, maIMGDotBold, String(SVX_RES(STR_DOT_BOLD)));
+	maVSUnderline.SetItemData(5,(void*)(sal_uInt64)UNDERLINE_BOLDDOTTED);
 
-    maVSUnderline.InsertItem(6, maIMGDash, String(SVX_RES(STR_DASH)));
-    maVSUnderline.SetItemData(6,(void*)(sal_uInt64)UNDERLINE_DASH);
+	maVSUnderline.InsertItem(6, maIMGDash, String(SVX_RES(STR_DASH)));
+	maVSUnderline.SetItemData(6,(void*)(sal_uInt64)UNDERLINE_DASH);
 
-    maVSUnderline.InsertItem(7, maIMGDashLong,String(SVX_RES(STR_DASH_LONG)));
-    maVSUnderline.SetItemData(7,(void*)(sal_uInt64)UNDERLINE_LONGDASH);
+	maVSUnderline.InsertItem(7, maIMGDashLong,String(SVX_RES(STR_DASH_LONG)));
+	maVSUnderline.SetItemData(7,(void*)(sal_uInt64)UNDERLINE_LONGDASH);
 
-    maVSUnderline.InsertItem(8, maIMGDashDot, String(SVX_RES(STR_DASH_DOT)));
-    maVSUnderline.SetItemData(8,(void*)(sal_uInt64)UNDERLINE_DASHDOT);
+	maVSUnderline.InsertItem(8, maIMGDashDot, String(SVX_RES(STR_DASH_DOT)));
+	maVSUnderline.SetItemData(8,(void*)(sal_uInt64)UNDERLINE_DASHDOT);
 
-    maVSUnderline.InsertItem(9, maIMGDashDotDot, String(SVX_RES(STR_DASH_DOT_DOT)));
-    maVSUnderline.SetItemData(9,(void*)(sal_uInt64)UNDERLINE_DASHDOTDOT);
+	maVSUnderline.InsertItem(9, maIMGDashDotDot, String(SVX_RES(STR_DASH_DOT_DOT)));
+	maVSUnderline.SetItemData(9,(void*)(sal_uInt64)UNDERLINE_DASHDOTDOT);
 
-    maVSUnderline.InsertItem(10, maIMGWave, String(SVX_RES(STR_WAVE)));
-    maVSUnderline.SetItemData(10,(void*)(sal_uInt64)UNDERLINE_WAVE);
+	maVSUnderline.InsertItem(10, maIMGWave, String(SVX_RES(STR_WAVE)));
+	maVSUnderline.SetItemData(10,(void*)(sal_uInt64)UNDERLINE_WAVE);
 
-    maVSUnderline.SetColCount( 1 );
-    aLink =  LINK( this, TextUnderlineControl, VSSelectHdl ) ;
-    maVSUnderline.SetSelectHdl(aLink);
+	maVSUnderline.SetColCount( 1 );
+	aLink = LINK( this, TextUnderlineControl, VSSelectHdl ) ;
+	maVSUnderline.SetSelectHdl(aLink);
 
-    maVSUnderline.StartSelection();
-    maVSUnderline.Show();
+	maVSUnderline.StartSelection();
+	maVSUnderline.Show();
 }
 
 
 void TextUnderlineControl::Rearrange(FontUnderline eLine)
 {
 	// high contrast
-	maVSUnderline.SetItemImage(1,  GetDisplayBackground().GetColor().IsDark()? maIMGSingleH :maIMGSingle);
-	maVSUnderline.SetItemImage(2,  GetDisplayBackground().GetColor().IsDark()? maIMGDoubleH : maIMGDouble );
+	maVSUnderline.SetItemImage(1, GetDisplayBackground().GetColor().IsDark()? maIMGSingleH :maIMGSingle);
+	maVSUnderline.SetItemImage(2, GetDisplayBackground().GetColor().IsDark()? maIMGDoubleH : maIMGDouble );
 	maVSUnderline.SetItemImage(3, GetDisplayBackground().GetColor().IsDark()? maIMGBoldH : maIMGBold);
 	maVSUnderline.SetItemImage(4, GetDisplayBackground().GetColor().IsDark()? maIMGDotH : maIMGDot);
 	maVSUnderline.SetItemImage(5, GetDisplayBackground().GetColor().IsDark()? maIMGDotBoldH :maIMGDotBold);
-	maVSUnderline.SetItemImage(6,  GetDisplayBackground().GetColor().IsDark()? maIMGDashH :maIMGDash);
+	maVSUnderline.SetItemImage(6, GetDisplayBackground().GetColor().IsDark()? maIMGDashH :maIMGDash);
 	maVSUnderline.SetItemImage(7, GetDisplayBackground().GetColor().IsDark()? maIMGDashLongH : maIMGDashLong);
-	maVSUnderline.SetItemImage(8, GetDisplayBackground().GetColor().IsDark()? maIMGDashDotH : maIMGDashDot); 
+	maVSUnderline.SetItemImage(8, GetDisplayBackground().GetColor().IsDark()? maIMGDashDotH : maIMGDashDot);
 	maVSUnderline.SetItemImage(9, GetDisplayBackground().GetColor().IsDark()? maIMGDashDotDotH : maIMGDashDotDot);
 	maVSUnderline.SetItemImage(10, GetDisplayBackground().GetColor().IsDark()? maIMGWaveH : maIMGWave);
 
-    switch(eLine)
-    {
-    case UNDERLINE_SINGLE:
-        maVSUnderline.SetItemImage(1, maIMGSingleSel);
-        maVSUnderline.SelectItem(1);
-        maVSUnderline.GrabFocus();
-        break;
-    case UNDERLINE_DOUBLE:
-        maVSUnderline.SetItemImage(2, maIMGDoubleSel);
-        maVSUnderline.SelectItem(2);
-        maVSUnderline.GrabFocus();
-        break;
-    case UNDERLINE_BOLD:
-        maVSUnderline.SetItemImage(3, maIMGBoldSel);
-        maVSUnderline.SelectItem(3);
-        maVSUnderline.GrabFocus();
-        break;
-    case UNDERLINE_DOTTED:
-        maVSUnderline.SetItemImage(4, maIMGDotSel);
-        maVSUnderline.SelectItem(4);
-        maVSUnderline.GrabFocus();
-        break;
-    case UNDERLINE_BOLDDOTTED:
-        maVSUnderline.SetItemImage(5, maIMGDotBoldSel);
-        maVSUnderline.SelectItem(5);
-        maVSUnderline.GrabFocus();
-        break;
-    case UNDERLINE_DASH:
-        maVSUnderline.SetItemImage(6, maIMGDashSel);
-        maVSUnderline.SelectItem(6);
-        maVSUnderline.GrabFocus();
-        break;
-    case UNDERLINE_LONGDASH:
-        maVSUnderline.SetItemImage(7, maIMGDashLongSel);
-        maVSUnderline.SelectItem(7);
-        maVSUnderline.GrabFocus();
-        break;
-    case UNDERLINE_DASHDOT:
-        maVSUnderline.SetItemImage(8, maIMGDashDotSel);
-        maVSUnderline.SelectItem(8);
-        maVSUnderline.GrabFocus();
-        break;
-    case UNDERLINE_DASHDOTDOT:
-        maVSUnderline.SetItemImage(9, maIMGDashDotDotSel);
-        maVSUnderline.SelectItem(9);
-        maVSUnderline.GrabFocus();
-        break;
-    case UNDERLINE_WAVE:
-        maVSUnderline.SetItemImage(10, maIMGWaveSel);
-        maVSUnderline.SelectItem(10);
-        maVSUnderline.GrabFocus();
-        break;
-    case UNDERLINE_NONE:
-        maVSUnderline.SelectItem(0);
-        maVSUnderline.GrabFocus();
-        break;
-    default:
-        maVSUnderline.SelectItem(1);
-        maVSUnderline.SetNoSelection();
-        maPBOptions.GrabFocus();
-    }
-    maVSUnderline.StartSelection();
+	switch(eLine)
+	{
+	case UNDERLINE_SINGLE:
+		maVSUnderline.SetItemImage(1, maIMGSingleSel);
+		maVSUnderline.SelectItem(1);
+		maVSUnderline.GrabFocus();
+		break;
+	case UNDERLINE_DOUBLE:
+		maVSUnderline.SetItemImage(2, maIMGDoubleSel);
+		maVSUnderline.SelectItem(2);
+		maVSUnderline.GrabFocus();
+		break;
+	case UNDERLINE_BOLD:
+		maVSUnderline.SetItemImage(3, maIMGBoldSel);
+		maVSUnderline.SelectItem(3);
+		maVSUnderline.GrabFocus();
+		break;
+	case UNDERLINE_DOTTED:
+		maVSUnderline.SetItemImage(4, maIMGDotSel);
+		maVSUnderline.SelectItem(4);
+		maVSUnderline.GrabFocus();
+		break;
+	case UNDERLINE_BOLDDOTTED:
+		maVSUnderline.SetItemImage(5, maIMGDotBoldSel);
+		maVSUnderline.SelectItem(5);
+		maVSUnderline.GrabFocus();
+		break;
+	case UNDERLINE_DASH:
+		maVSUnderline.SetItemImage(6, maIMGDashSel);
+		maVSUnderline.SelectItem(6);
+		maVSUnderline.GrabFocus();
+		break;
+	case UNDERLINE_LONGDASH:
+		maVSUnderline.SetItemImage(7, maIMGDashLongSel);
+		maVSUnderline.SelectItem(7);
+		maVSUnderline.GrabFocus();
+		break;
+	case UNDERLINE_DASHDOT:
+		maVSUnderline.SetItemImage(8, maIMGDashDotSel);
+		maVSUnderline.SelectItem(8);
+		maVSUnderline.GrabFocus();
+		break;
+	case UNDERLINE_DASHDOTDOT:
+		maVSUnderline.SetItemImage(9, maIMGDashDotDotSel);
+		maVSUnderline.SelectItem(9);
+		maVSUnderline.GrabFocus();
+		break;
+	case UNDERLINE_WAVE:
+		maVSUnderline.SetItemImage(10, maIMGWaveSel);
+		maVSUnderline.SelectItem(10);
+		maVSUnderline.GrabFocus();
+		break;
+	case UNDERLINE_NONE:
+		maVSUnderline.SelectItem(0);
+		maVSUnderline.GrabFocus();
+		break;
+	default:
+		maVSUnderline.SelectItem(1);
+		maVSUnderline.SetNoSelection();
+		maPBOptions.GrabFocus();
+	}
+	maVSUnderline.StartSelection();
 }
 
 
 IMPL_LINK(TextUnderlineControl, VSSelectHdl, void *, pControl)
 {
-    if ( pControl == &maVSUnderline )
-    {
-        const sal_uInt16 iPos = maVSUnderline.GetSelectItemId();
-        const FontUnderline eUnderline = ( iPos == 0 )
-                                         ? UNDERLINE_NONE
-                                         : (FontUnderline)(sal_uInt64)maVSUnderline.GetItemData( iPos );
+	if ( pControl == &maVSUnderline )
+	{
+		const sal_uInt16 iPos = maVSUnderline.GetSelectItemId();
+		const FontUnderline eUnderline = ( iPos == 0 )
+										 ? UNDERLINE_NONE
+										 : (FontUnderline)(sal_uInt64)maVSUnderline.GetItemData( iPos );
 
-        SvxUnderlineItem aLineItem(eUnderline, SID_ATTR_CHAR_UNDERLINE);
+		SvxUnderlineItem aLineItem(eUnderline, SID_ATTR_CHAR_UNDERLINE);
 
-        aLineItem.SetColor(mrTextPropertyPanel.GetUnderlineColor());
-        mpBindings->GetDispatcher()->Execute(SID_ATTR_CHAR_UNDERLINE, SFX_CALLMODE_RECORD, &aLineItem, 0L);
+		aLineItem.SetColor(mrTextPropertyPanel.GetUnderlineColor());
+		mpBindings->GetDispatcher()->Execute(SID_ATTR_CHAR_UNDERLINE, SFX_CALLMODE_RECORD, &aLineItem, 0L);
 
-        mrTextPropertyPanel.SetUnderline(eUnderline);
+		mrTextPropertyPanel.SetUnderline(eUnderline);
 
-        mrTextPropertyPanel.EndUnderlinePopupMode();
-    }
-    return( 0L );
+		mrTextPropertyPanel.EndUnderlinePopupMode();
+	}
+	return( 0L );
 }
 
 IMPL_LINK(TextUnderlineControl, PBClickHdl, PushButton *, pPBtn)
 {
-	if(pPBtn == &maPBOptions)  
+	if(pPBtn == &maPBOptions)
 	{
 		if (mpBindings)
 		{
diff --git a/main/svx/source/sidebar/text/TextUnderlineControl.hxx b/main/svx/source/sidebar/text/TextUnderlineControl.hxx
index f68e44468c..151c255d35 100644
--- a/main/svx/source/sidebar/text/TextUnderlineControl.hxx
+++ b/main/svx/source/sidebar/text/TextUnderlineControl.hxx
@@ -1,5 +1,5 @@
 /**************************************************************
- * 
+ *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information
@@ -7,21 +7,23 @@
  * to you under the Apache License, Version 2.0 (the
  * "License"); you may not use this file except in compliance
  * with the License.  You may obtain a copy of the License at
- * 
+ *
  *   http://www.apache.org/licenses/LICENSE-2.0
- * 
+ *
  * Unless required by applicable law or agreed to in writing,
  * software distributed under the License is distributed on an
  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  * KIND, either express or implied.  See the License for the
  * specific language governing permissions and limitations
  * under the License.
- * 
+ *
  *************************************************************/
 
+
+
 #ifndef _SVX_SIDEBAR_UNDERLINE_CONTROL_HXX_
 #define _SVX_SIDEBAR_UNDERLINE_CONTROL_HXX_
- 
+
 #include "svx/sidebar/PopupControl.hxx"
 #include <sfx2/bindings.hxx>
 #include <svtools/ctrlbox.hxx>
@@ -38,14 +40,14 @@ namespace svx{ namespace sidebar {
 class TextUnderlineControl:public svx::sidebar::PopupControl
 {
 public:
-    TextUnderlineControl (
-        Window* pParent,
-        svx::sidebar::TextPropertyPanel& rPanel,
-        SfxBindings* pBindings);
-    void Rearrange(FontUnderline eLine);
+	TextUnderlineControl (
+		Window* pParent,
+		svx::sidebar::TextPropertyPanel& rPanel,
+		SfxBindings* pBindings);
+	void Rearrange(FontUnderline eLine);
 
 private:
-	svx::sidebar::TextPropertyPanel&     mrTextPropertyPanel;
+	svx::sidebar::TextPropertyPanel& mrTextPropertyPanel;
 	SfxBindings*		mpBindings;
 	ValueSet			maVSUnderline;
 	PushButton			maPBOptions;
@@ -61,7 +63,7 @@ private:
 	Image				maIMGDashDotDot;
 	Image				maIMGWave;
 
-	//add  for high contract
+	//add for high contract
 	Image				maIMGSingleH;
 	Image				maIMGDoubleH;
 	Image				maIMGBoldH;
@@ -93,4 +95,3 @@ private:
 
 
 #endif
-
diff --git a/main/svx/source/sidebar/text/TextUnderlinePopup.cxx b/main/svx/source/sidebar/text/TextUnderlinePopup.cxx
index 15040e7a48..a261912e46 100644
--- a/main/svx/source/sidebar/text/TextUnderlinePopup.cxx
+++ b/main/svx/source/sidebar/text/TextUnderlinePopup.cxx
@@ -1,5 +1,5 @@
 /**************************************************************
- * 
+ *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information
@@ -7,18 +7,20 @@
  * to you under the Apache License, Version 2.0 (the
  * "License"); you may not use this file except in compliance
  * with the License.  You may obtain a copy of the License at
- * 
+ *
  *   http://www.apache.org/licenses/LICENSE-2.0
- * 
+ *
  * Unless required by applicable law or agreed to in writing,
  * software distributed under the License is distributed on an
  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  * KIND, either express or implied.  See the License for the
  * specific language governing permissions and limitations
  * under the License.
- * 
+ *
  *************************************************************/
 
+
+
 #include "TextUnderlinePopup.hxx"
 #include "TextUnderlineControl.hxx"
 
@@ -26,12 +28,12 @@
 namespace svx { namespace sidebar {
 
 TextUnderlinePopup::TextUnderlinePopup (
-    Window* pParent,
-    const ::boost::function<PopupControl*(PopupContainer*)>& rControlCreator)
-    : Popup(
-        pParent,
-        rControlCreator, 
-        ::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM("Character Spacing")))
+	Window* pParent,
+	const ::boost::function<PopupControl*(PopupContainer*)>& rControlCreator)
+	: Popup(
+		pParent,
+		rControlCreator,
+		::rtl::OUString( RTL_CONSTASCII_USTRINGPARAM("Text Underline")))
 {
 }
 
@@ -47,14 +49,12 @@ TextUnderlinePopup::~TextUnderlinePopup (void)
 
 void TextUnderlinePopup::Rearrange (FontUnderline eLine)
 {
-    ProvideContainerAndControl();
+	ProvideContainerAndControl();
 
-    TextUnderlineControl* pControl = dynamic_cast<TextUnderlineControl*>(mpControl.get());
-    if (pControl != NULL)
-        pControl->Rearrange(eLine);	
+	TextUnderlineControl* pControl = dynamic_cast<TextUnderlineControl*>(mpControl.get());
+	if (pControl != NULL)
+		pControl->Rearrange(eLine);
 }
 
 
 } } // end of namespace svx::sidebar
-
-
diff --git a/main/svx/source/sidebar/text/TextUnderlinePopup.hxx b/main/svx/source/sidebar/text/TextUnderlinePopup.hxx
index 54e92d0c1c..ae83892351 100644
--- a/main/svx/source/sidebar/text/TextUnderlinePopup.hxx
+++ b/main/svx/source/sidebar/text/TextUnderlinePopup.hxx
@@ -1,5 +1,5 @@
 /**************************************************************
- * 
+ *
  * Licensed to the Apache Software Foundation (ASF) under one
  * or more contributor license agreements.  See the NOTICE file
  * distributed with this work for additional information
@@ -7,18 +7,20 @@
  * to you under the Apache License, Version 2.0 (the
  * "License"); you may not use this file except in compliance
  * with the License.  You may obtain a copy of the License at
- * 
+ *
  *   http://www.apache.org/licenses/LICENSE-2.0
- * 
+ *
  * Unless required by applicable law or agreed to in writing,
  * software distributed under the License is distributed on an
  * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  * KIND, either express or implied.  See the License for the
  * specific language governing permissions and limitations
  * under the License.
- * 
+ *
  *************************************************************/
 
+
+
 #ifndef _SVX_SIDEBAR_UNDERLINE_POPUP_HXX_
 #define _SVX_SIDEBAR_UNDERLINE_POPUP_HXX_
 
@@ -29,19 +31,17 @@
 namespace svx { namespace sidebar {
 
 class TextUnderlinePopup
-    : public Popup
+	: public Popup
 {
 public :
-    TextUnderlinePopup (
-        Window* pParent,
-        const ::boost::function<PopupControl*(PopupContainer*)>& rControlCreator);
-    ~TextUnderlinePopup (void);
+	TextUnderlinePopup (
+		Window* pParent,
+		const ::boost::function<PopupControl*(PopupContainer*)>& rControlCreator);
+	~TextUnderlinePopup (void);
 
-    void Rearrange (FontUnderline eLine);
+	void Rearrange (FontUnderline eLine);
 };
 
 } } // end of namespace svx::sidebar
 
 #endif
-
-