summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIvan Timofeev <timofeev.i.s@gmail.com>2013-08-29 11:26:14 +0400
committerIvan Timofeev <timofeev.i.s@gmail.com>2013-08-29 11:33:33 +0400
commit80b74ef0ce0843f4b114bc33d60f25e459db68d7 (patch)
tree25a50e64efa83615504abee6dc3183e4f08fc195
parentdb979f70434f3ac01329de425ebf125546bf7e2c (diff)
fix indentation
Change-Id: Ifc093acc67c8ee15a68dac8bb6a73c5dd21580d1
-rw-r--r--svx/source/tbxctrls/linectrl.cxx22
1 files changed, 11 insertions, 11 deletions
diff --git a/svx/source/tbxctrls/linectrl.cxx b/svx/source/tbxctrls/linectrl.cxx
index e250b5537d67..0bc8087b5901 100644
--- a/svx/source/tbxctrls/linectrl.cxx
+++ b/svx/source/tbxctrls/linectrl.cxx
@@ -114,7 +114,7 @@ void SvxLineStyleToolBoxControl::StateChanged (
}
else if ( nSID != SID_DASH_LIST )
{
- // no or ambiguous status
+ // no or ambiguous status
pBox->SetNoSelection();
}
}
@@ -131,9 +131,9 @@ void SvxLineStyleToolBoxControl::Update( const SfxPoolItem* pState )
SvxLineBox* pBox = (SvxLineBox*)GetToolBox().GetItemWindow( GetId() );
DBG_ASSERT( pBox, "Window not found!" );
- // Since the timer can strike unexpectedly, it may happen that
- // the LB is not yet filled. A ClearCache() on the control
- // in DelayHdl () was unsuccessful.
+ // Since the timer can strike unexpectedly, it may happen that
+ // the LB is not yet filled. A ClearCache() on the control
+ // in DelayHdl () was unsuccessful.
if( pBox->GetEntryCount() == 0 )
pBox->FillControl();
@@ -175,7 +175,7 @@ void SvxLineStyleToolBoxControl::Update( const SfxPoolItem* pState )
if ( pState && ( pState->ISA( SvxDashListItem ) ) )
{
- // The list of line styles has changed
+ // The list of line styles has changed
SvxLineBox* pBox = (SvxLineBox*)GetToolBox().GetItemWindow( GetId() );
DBG_ASSERT( pBox, "Window not found!" );
@@ -242,8 +242,8 @@ void SvxLineWidthToolBoxControl::StateChanged(
{
DBG_ASSERT( pState->ISA(XLineWidthItem), "wrong ItemType" );
- // Core-Unit handed over to MetricField
- // Should not happen in CreateItemWin ()!
+ // Core-Unit handed over to MetricField
+ // Should not happen in CreateItemWin ()!
SfxMapUnit eUnit = SFX_MAPUNIT_100TH_MM; // CD!!! GetCoreMetric();
pFld->SetCoreUnit( eUnit );
@@ -325,7 +325,7 @@ void SvxLineColorToolBoxControl::Update( const SfxPoolItem* pState )
DBG_ASSERT( pBox, "Window not found" );
- // The list of colors (ColorTable) has changed:
+ // The list of colors (ColorTable) has changed:
::Color aTmpColor( pBox->GetSelectEntryColor() );
pBox->Clear();
pBox->Fill( ( (SvxColorListItem*)pState )->GetColorList() );
@@ -501,8 +501,8 @@ void SvxLineEndWindow::FillValueSet()
long nCount = pLineEndList->Count();
- // First entry: no line end.
- // An entry is temporarly added to get the UI bitmap
+ // First entry: no line end.
+ // An entry is temporarly added to get the UI bitmap
basegfx::B2DPolyPolygon aNothing;
pLineEndList->Insert( new XLineEndEntry( aNothing, SVX_RESSTR( RID_SVXSTR_NONE ) ) );
pEntry = pLineEndList->GetLineEnd( nCount );
@@ -633,7 +633,7 @@ void SvxLineEndWindow::StateChanged(
{
if ( nSID == SID_LINEEND_LIST )
{
- // The list of line ends (LineEndList) has changed
+ // The list of line ends (LineEndList) has changed
if ( pState && pState->ISA( SvxLineEndListItem ))
{
pLineEndList = ((SvxLineEndListItem*)pState)->GetLineEndList();