summaryrefslogtreecommitdiff
path: root/svx/source/items/viewlayoutitem.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'svx/source/items/viewlayoutitem.cxx')
-rw-r--r--svx/source/items/viewlayoutitem.cxx8
1 files changed, 0 insertions, 8 deletions
diff --git a/svx/source/items/viewlayoutitem.cxx b/svx/source/items/viewlayoutitem.cxx
index ea349097cd44..986348466f47 100644
--- a/svx/source/items/viewlayoutitem.cxx
+++ b/svx/source/items/viewlayoutitem.cxx
@@ -26,7 +26,6 @@
#include <osl/diagnose.h>
-
SfxPoolItem* SvxViewLayoutItem::CreateDefault() { return new SvxViewLayoutItem; }
#define VIEWLAYOUT_PARAM_COLUMNS "Columns"
@@ -34,7 +33,6 @@ SfxPoolItem* SvxViewLayoutItem::CreateDefault() { return new SvxViewLayoutItem;
#define VIEWLAYOUT_PARAMS 2
-
SvxViewLayoutItem::SvxViewLayoutItem
(
sal_uInt16 nColumns,
@@ -47,7 +45,6 @@ SvxViewLayoutItem::SvxViewLayoutItem
}
-
SvxViewLayoutItem::SvxViewLayoutItem( const SvxViewLayoutItem& rOrig )
: SfxUInt16Item( rOrig.Which(), rOrig.GetValue() ),
mbBookMode( rOrig.IsBookMode() )
@@ -55,34 +52,29 @@ SvxViewLayoutItem::SvxViewLayoutItem( const SvxViewLayoutItem& rOrig )
}
-
SvxViewLayoutItem::~SvxViewLayoutItem()
{
}
-
SfxPoolItem* SvxViewLayoutItem::Clone( SfxItemPool * /*pPool*/ ) const
{
return new SvxViewLayoutItem( *this );
}
-
SfxPoolItem* SvxViewLayoutItem::Create( SvStream& /*rStrm*/, sal_uInt16 /*nVersion*/ ) const
{
return nullptr;
}
-
SvStream& SvxViewLayoutItem::Store( SvStream& rStrm, sal_uInt16 /*nItemVersion*/ ) const
{
return rStrm;
}
-
bool SvxViewLayoutItem::operator==( const SfxPoolItem& rAttr ) const
{
DBG_ASSERT( SfxPoolItem::operator==(rAttr), "unequal types" );