summaryrefslogtreecommitdiffstats
path: root/include/sfx2/frmdescr.hxx
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 /include/sfx2/frmdescr.hxx
parentFix typo in code (diff)
downloadcore-0593041d86e479981485644abfd56f94289270de.tar.gz
core-0593041d86e479981485644abfd56f94289270de.zip
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 'include/sfx2/frmdescr.hxx')
-rw-r--r--include/sfx2/frmdescr.hxx51
1 files changed, 0 insertions, 51 deletions
diff --git a/include/sfx2/frmdescr.hxx b/include/sfx2/frmdescr.hxx
index 633ac8b94fd0..ae28c0ea5254 100644
--- a/include/sfx2/frmdescr.hxx
+++ b/include/sfx2/frmdescr.hxx
@@ -135,57 +135,6 @@ public:
SfxFrameDescriptor* Clone() const;
};
-// No block to implement a =operator
-struct SfxFrameProperties
-{
- OUString aURL;
- OUString aName;
- long lMarginWidth;
- long lMarginHeight;
- long lSize;
- long lSetSize;
- long lFrameSpacing;
- long lInheritedFrameSpacing;
- ScrollingMode eScroll;
- SizeSelector eSizeSelector;
- SizeSelector eSetSizeSelector;
- bool bHasBorder;
- bool bBorderSet;
- bool bResizable;
- bool bSetResizable;
- bool bIsRootSet;
- bool bIsInColSet;
- bool bHasBorderInherited;
- SfxFrameDescriptor* pFrame;
-
-private:
- SfxFrameProperties( SfxFrameProperties& ) {}
-public:
- SfxFrameProperties()
- : lMarginWidth( SIZE_NOT_SET ),
- lMarginHeight( SIZE_NOT_SET ),
- lSize( 1L ),
- lSetSize( 1L ),
- lFrameSpacing( SPACING_NOT_SET ),
- lInheritedFrameSpacing( SPACING_NOT_SET ),
- eScroll( ScrollingAuto ),
- eSizeSelector( SIZE_REL ),
- eSetSizeSelector( SIZE_REL ),
- bHasBorder( true ),
- bBorderSet( true ),
- bResizable( true ),
- bSetResizable( true ),
- bIsRootSet( false ),
- bIsInColSet( false ),
- bHasBorderInherited( true ),
- pFrame( nullptr ) {}
-
- ~SfxFrameProperties() { delete pFrame; }
-
- bool operator ==( const SfxFrameProperties& ) const;
- SfxFrameProperties& operator =( const SfxFrameProperties &rProp );
-};
-
#endif // INCLUDED_SFX2_FRMDESCR_HXX
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */