diff options
author | Peter Burow <pb@openoffice.org> | 2002-08-15 10:47:42 +0000 |
---|---|---|
committer | Peter Burow <pb@openoffice.org> | 2002-08-15 10:47:42 +0000 |
commit | 8ba9d4aa240594b0a736cb1218ec882b7a964693 (patch) | |
tree | 88b12c9262e0eea907cf815f5f0409730882350e /svx/source/dialog | |
parent | 47cd920b7037fd352e8c88c64901307cb92c0f6e (diff) |
fix: #102338# obsolete controls (text align of asian TP) removed
Diffstat (limited to 'svx/source/dialog')
-rw-r--r-- | svx/source/dialog/paragrph.cxx | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/svx/source/dialog/paragrph.cxx b/svx/source/dialog/paragrph.cxx index 4c4efdeb26a0..2983128a255c 100644 --- a/svx/source/dialog/paragrph.cxx +++ b/svx/source/dialog/paragrph.cxx @@ -2,9 +2,9 @@ * * $RCSfile: paragrph.cxx,v $ * - * $Revision: 1.28 $ + * $Revision: 1.29 $ * - * last change: $Author: gt $ $Date: 2002-08-13 12:57:30 $ + * last change: $Author: pb $ $Date: 2002-08-15 11:47:42 $ * * The Contents of this file are made available subject to the terms of * either of the following licenses @@ -408,13 +408,13 @@ BOOL SvxStdParagraphTabPage::FillItemSet( SfxItemSet& rOutSet ) if ( aLeftIndent.IsRelative() ) aMargin.SetTxtLeft( rOldItem.GetTxtLeft(), - aLeftIndent.GetValue() ); + (USHORT)aLeftIndent.GetValue() ); else aMargin.SetTxtLeft( GetCoreValue( aLeftIndent, eUnit ) ); if ( aRightIndent.IsRelative() ) aMargin.SetRight( rOldItem.GetRight(), - aRightIndent.GetValue() ); + (USHORT)aRightIndent.GetValue() ); else aMargin.SetRight( GetCoreValue( aRightIndent, eUnit ) ); @@ -2223,9 +2223,9 @@ SvxAsianTabPage::SvxAsianTabPage( Window* pParent, const SfxItemSet& rSet ) : aCharDistFL( this, ResId(FL_AS_CHAR_DIST )), aPuntuationCB( this, ResId(CB_AS_PUNCTUATION )), aScriptSpaceCB( this, ResId(CB_AS_SCRIPT_SPACE )), - aAdjustNumbersCB( this, ResId(CB_AS_ADJUST_NUMBERS)), + aAdjustNumbersCB( this, ResId(CB_AS_ADJUST_NUMBERS))/*, aTextAlignFT( this, ResId(FT_TEXT_ALIGN )), - aTextAlignLB( this, ResId(LB_TEXT_ALIGN )) + aTextAlignLB( this, ResId(LB_TEXT_ALIGN ))*/ { FreeResource(); @@ -2239,8 +2239,8 @@ SvxAsianTabPage::SvxAsianTabPage( Window* pParent, const SfxItemSet& rSet ) : aCharDistFL.Hide(); aPuntuationCB.Hide(); aAdjustNumbersCB.Hide(); - aTextAlignFT.Hide(); - aTextAlignLB.Hide(); +/* aTextAlignFT.Hide(); + aTextAlignLB.Hide(); */ aScriptSpaceCB.SetPosPixel( aHangingPunctCB.GetPosPixel() ); aHangingPunctCB.SetPosPixel( aAllowWordBreakCB.GetPosPixel() ); //JP 28.3.2001 - these options currently not available! @@ -2342,8 +2342,8 @@ void SvxAsianTabPage::Reset( const SfxItemSet& rSet ) aAllowWordBreakCB .Enable(FALSE); aPuntuationCB .Enable(FALSE); aAdjustNumbersCB .Enable(FALSE); - aTextAlignFT.Enable(FALSE); - aTextAlignLB.Enable(FALSE); +/* aTextAlignFT.Enable(FALSE); + aTextAlignLB.Enable(FALSE); */ } /* -----------------------------19.12.00 12:59-------------------------------- |