summaryrefslogtreecommitdiff
path: root/svx/source/items/algitem.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svx/source/items/algitem.cxx')
-rw-r--r--svx/source/items/algitem.cxx22
1 files changed, 0 insertions, 22 deletions
diff --git a/svx/source/items/algitem.cxx b/svx/source/items/algitem.cxx
index 54720b99e83e..ec1f4e47e9f9 100644
--- a/svx/source/items/algitem.cxx
+++ b/svx/source/items/algitem.cxx
@@ -57,7 +57,6 @@ SvxOrientationItem::SvxOrientationItem( sal_Int32 nRotation, bool bStacked, cons
}
-
bool SvxOrientationItem::GetPresentation
(
SfxItemPresentation /*ePres*/,
@@ -70,7 +69,6 @@ bool SvxOrientationItem::GetPresentation
}
-
bool SvxOrientationItem::QueryValue( uno::Any& rVal, sal_uInt8 /*nMemberId*/ ) const
{
table::CellOrientation eUno = table::CellOrientation_STANDARD;
@@ -109,7 +107,6 @@ bool SvxOrientationItem::PutValue( const uno::Any& rVal, sal_uInt8 /*nMemberId*/
}
-
OUString SvxOrientationItem::GetValueText( sal_uInt16 nVal )
{
DBG_ASSERT( nVal <= SVX_ORIENTATION_STACKED, "enum overflow!" );
@@ -117,14 +114,12 @@ OUString SvxOrientationItem::GetValueText( sal_uInt16 nVal )
}
-
SfxPoolItem* SvxOrientationItem::Clone( SfxItemPool* ) const
{
return new SvxOrientationItem( *this );
}
-
SfxPoolItem* SvxOrientationItem::Create( SvStream& rStream, sal_uInt16 ) const
{
sal_uInt16 nVal;
@@ -133,14 +128,12 @@ SfxPoolItem* SvxOrientationItem::Create( SvStream& rStream, sal_uInt16 ) const
}
-
sal_uInt16 SvxOrientationItem::GetValueCount() const
{
return SVX_ORIENTATION_STACKED + 1; // letzter Enum-Wert + 1
}
-
bool SvxOrientationItem::IsStacked() const
{
return static_cast< SvxCellOrientation >( GetValue() ) == SVX_ORIENTATION_STACKED;
@@ -184,7 +177,6 @@ SvxMarginItem::SvxMarginItem( const sal_uInt16 nId ) :
}
-
SvxMarginItem::SvxMarginItem( sal_Int16 nLeft,
sal_Int16 nTop,
sal_Int16 nRight,
@@ -200,8 +192,6 @@ SvxMarginItem::SvxMarginItem( sal_Int16 nLeft,
}
-
-
SvxMarginItem::SvxMarginItem( const SvxMarginItem& rItem ) :
SfxPoolItem( rItem.Which() )
@@ -213,7 +203,6 @@ SvxMarginItem::SvxMarginItem( const SvxMarginItem& rItem ) :
}
-
bool SvxMarginItem::GetPresentation
(
SfxItemPresentation ePres,
@@ -262,7 +251,6 @@ bool SvxMarginItem::GetPresentation
}
-
bool SvxMarginItem::operator==( const SfxPoolItem& rItem ) const
{
DBG_ASSERT( SfxPoolItem::operator==( rItem ), "unequal type" );
@@ -274,14 +262,12 @@ bool SvxMarginItem::operator==( const SfxPoolItem& rItem ) const
}
-
SfxPoolItem* SvxMarginItem::Clone( SfxItemPool* ) const
{
return new SvxMarginItem(*this);
}
-
SfxPoolItem* SvxMarginItem::Create( SvStream& rStream, sal_uInt16 ) const
{
sal_Int16 nLeft;
@@ -296,7 +282,6 @@ SfxPoolItem* SvxMarginItem::Create( SvStream& rStream, sal_uInt16 ) const
}
-
SvStream& SvxMarginItem::Store( SvStream &rStream, sal_uInt16 /*nItemVersion*/) const
{
rStream.WriteInt16( nLeftMargin );
@@ -307,8 +292,6 @@ SvStream& SvxMarginItem::Store( SvStream &rStream, sal_uInt16 /*nItemVersion*/)
}
-
-
bool SvxMarginItem::QueryValue( uno::Any& rVal, sal_uInt8 nMemberId ) const
{
bool bConvert = 0!=(nMemberId&CONVERT_TWIPS);
@@ -336,7 +319,6 @@ bool SvxMarginItem::QueryValue( uno::Any& rVal, sal_uInt8 nMemberId ) const
}
-
bool SvxMarginItem::PutValue( const uno::Any& rVal, sal_uInt8 nMemberId )
{
bool bConvert = ( ( nMemberId & CONVERT_TWIPS ) != 0 );
@@ -367,28 +349,24 @@ bool SvxMarginItem::PutValue( const uno::Any& rVal, sal_uInt8 nMemberId )
}
-
void SvxMarginItem::SetLeftMargin( sal_Int16 nLeft )
{
nLeftMargin = nLeft;
}
-
void SvxMarginItem::SetTopMargin( sal_Int16 nTop )
{
nTopMargin = nTop;
}
-
void SvxMarginItem::SetRightMargin( sal_Int16 nRight )
{
nRightMargin = nRight;
}
-
void SvxMarginItem::SetBottomMargin( sal_Int16 nBottom )
{
nBottomMargin = nBottom;