summaryrefslogtreecommitdiff
path: root/sfx2/source/doc
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2016-05-19 14:55:44 +0200
committerNoel Grandin <noelgrandin@gmail.com>2016-05-20 10:47:05 +0000
commit0593041d86e479981485644abfd56f94289270de (patch)
treea79fc904f0a4e1bcbaa9336cbf2e39406e4cdc76 /sfx2/source/doc
parentdcea8c75d68ce19beffab08bb6682cf1743be66a (diff)
loplugin:unusedmethods in sfx2, SfxUnoControllerItem goes
Change-Id: Ibbae76b45da924e44fb91dcb3548106e8b908fbf Reviewed-on: https://gerrit.libreoffice.org/25160 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noelgrandin@gmail.com>
Diffstat (limited to 'sfx2/source/doc')
-rw-r--r--sfx2/source/doc/frmdescr.cxx36
1 files changed, 0 insertions, 36 deletions
diff --git a/sfx2/source/doc/frmdescr.cxx b/sfx2/source/doc/frmdescr.cxx
index 96e51c17fb3d..8b67a02a3e2c 100644
--- a/sfx2/source/doc/frmdescr.cxx
+++ b/sfx2/source/doc/frmdescr.cxx
@@ -135,40 +135,4 @@ void SfxFrameDescriptor::SetWallpaper( const Wallpaper& rWallpaper )
pImp->pWallpaper = new Wallpaper( rWallpaper );
}
-SfxFrameProperties& SfxFrameProperties::operator =(
- const SfxFrameProperties &rProp )
-{
- aURL = rProp.aURL;
- aName = rProp.aName;
- lMarginWidth = rProp.lMarginWidth;
- lMarginHeight = rProp.lMarginHeight;
- lSize = rProp.lSize;
- lSetSize = rProp.lSetSize;
- lFrameSpacing = rProp.lFrameSpacing;
- lInheritedFrameSpacing = rProp.lInheritedFrameSpacing;
- eScroll = rProp.eScroll;
- eSizeSelector = rProp.eSizeSelector;
- eSetSizeSelector = rProp.eSetSizeSelector;
- bHasBorder = rProp.bHasBorder;
- bBorderSet = rProp.bBorderSet;
- bResizable = rProp.bResizable;
- bSetResizable = rProp.bSetResizable;
- bIsRootSet = rProp.bIsRootSet;
- bIsInColSet = rProp.bIsInColSet;
- bHasBorderInherited = rProp.bHasBorderInherited;
- pFrame = rProp.pFrame->Clone();
- return *this;
-}
-
-bool SfxFrameProperties::operator ==( const SfxFrameProperties& rProp ) const
-{
- return aURL == rProp.aURL && aName == rProp.aName && lMarginWidth == rProp.lMarginWidth && lMarginHeight == rProp.lMarginHeight &&
- lSize == rProp.lSize && eScroll == rProp.eScroll && eSizeSelector == rProp.eSizeSelector &&
- lSetSize == rProp.lSetSize && lFrameSpacing == rProp.lFrameSpacing && eSetSizeSelector == rProp.eSetSizeSelector &&
- bHasBorder == rProp.bHasBorder && bBorderSet == rProp.bBorderSet &&
- bResizable == rProp.bResizable && bSetResizable == rProp.bSetResizable;
-}
-
-
-
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */