summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2017-07-03 15:58:22 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2017-07-04 08:36:11 +0200
commitfb0644e8f0a944c10b654233813ab40792e78e0a (patch)
tree411696fe0ee42747fb0c131a6ff80ff3d16e48a6 /include
parentb3499a00fc7c1ce3393577c592b9ac6771d2a922 (diff)
loplugin:unusedfields in sfx2
Change-Id: I9f57545ca4ee5159a095f9b35267d298ccc7fb4e Reviewed-on: https://gerrit.libreoffice.org/39476 Tested-by: Jenkins <ci@libreoffice.org> Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'include')
-rw-r--r--include/sfx2/frmdescr.hxx7
-rw-r--r--include/sfx2/lnkbase.hxx3
2 files changed, 0 insertions, 10 deletions
diff --git a/include/sfx2/frmdescr.hxx b/include/sfx2/frmdescr.hxx
index eab02e3b3f62..8433afa93887 100644
--- a/include/sfx2/frmdescr.hxx
+++ b/include/sfx2/frmdescr.hxx
@@ -66,7 +66,6 @@ class SFX2_DLLPUBLIC SfxFrameDescriptor
ScrollingMode eScroll;
bool bHasBorder;
bool bHasBorderSet;
- bool bResizeVertical;
std::unique_ptr< SfxFrameDescriptor_Impl > pImpl;
public:
@@ -80,10 +79,6 @@ public:
void SetURL( const OUString& rURL );
void SetActualURL( const OUString& rURL );
- // Size
- void SetResizable( bool bRes )
- { bResizeVertical = bRes; }
-
// FrameName
const OUString& GetName() const
{ return aName; }
@@ -100,8 +95,6 @@ public:
void SetScrollingMode( ScrollingMode eMode )
{ eScroll = eMode; }
- void SetWallpaper( const Wallpaper& rWallpaper );
-
// FrameBorder
bool HasFrameBorder() const
{ return bHasBorder; }
diff --git a/include/sfx2/lnkbase.hxx b/include/sfx2/lnkbase.hxx
index 339c8032ccb8..eaeebe466f40 100644
--- a/include/sfx2/lnkbase.hxx
+++ b/include/sfx2/lnkbase.hxx
@@ -76,7 +76,6 @@ private:
sal_uInt16 nObjType;
bool bVisible : 1;
bool bSynchron : 1;
- bool bUseCache : 1; // for Graphics Links!
bool bWasLastEditOK : 1;
DECL_LINK( EndEditHdl, const OUString&, void );
@@ -154,8 +153,6 @@ public:
bool IsSynchron() const { return bSynchron; }
void SetSynchron( bool bFlag ) { bSynchron = bFlag; }
- void SetUseCache( bool bFlag ) { bUseCache = bFlag; }
-
void setStreamToLoadFrom(
const css::uno::Reference<css::io::XInputStream>& xInputStream,
bool bIsReadOnly )