summaryrefslogtreecommitdiff
path: root/sd
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2015-09-29 12:40:47 +0200
committerNoel Grandin <noel@peralex.com>2015-09-29 15:08:43 +0200
commit34180700b2686c97cdce0b52ca9578a41a153035 (patch)
tree073f3753e4483f30efa3c7c769f23971e6a046d5 /sd
parente710170d906fcb248a5e4ff5a3a90cbf0e20003d (diff)
loplugin:removeunusedmethods, remove unused stuff
Change-Id: I35456b2a3ad2a84a1d045f09cdfb29e4c19b8350
Diffstat (limited to 'sd')
-rw-r--r--sd/source/filter/eppt/eppt.hxx1
-rw-r--r--sd/source/filter/eppt/epptbase.hxx2
-rw-r--r--sd/source/filter/ppt/pptanimations.hxx1
-rw-r--r--sd/source/ui/dlg/RemoteDialogClientBox.hxx2
-rw-r--r--sd/source/ui/inc/unosrch.hxx5
-rw-r--r--sd/source/ui/unoidl/unoobj.hxx1
6 files changed, 2 insertions, 10 deletions
diff --git a/sd/source/filter/eppt/eppt.hxx b/sd/source/filter/eppt/eppt.hxx
index 0513dbaad0ea..71dcaa77ae40 100644
--- a/sd/source/filter/eppt/eppt.hxx
+++ b/sd/source/filter/eppt/eppt.hxx
@@ -230,7 +230,6 @@ class PPTWriter : public PPTWriterBase, public PPTExBulletProvider
sal_uInt32 ImplInsertBookmarkURL( const OUString& rBookmark, const sal_uInt32 nType,
const OUString& rStringVer0, const OUString& rStringVer1, const OUString& rStringVer2, const OUString& rStringVer3 );
virtual bool ImplCreateMainNotes() SAL_OVERRIDE;
- bool ImplCreateNotes( sal_uInt32 nPageNum );
void ImplWriteBackground( ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet > & rXBackgroundPropSet );
void ImplWriteVBA();
void ImplWriteOLE();
diff --git a/sd/source/filter/eppt/epptbase.hxx b/sd/source/filter/eppt/epptbase.hxx
index 99d84cd5bd47..7de91629c544 100644
--- a/sd/source/filter/eppt/epptbase.hxx
+++ b/sd/source/filter/eppt/epptbase.hxx
@@ -105,8 +105,6 @@ class PropValue
: mXPropSet( rXPropSet )
{}
- ::com::sun::star::uno::Any GetAny() { return mAny; }
-
static bool GetPropertyValue(
::com::sun::star::uno::Any& rAny,
const ::com::sun::star::uno::Reference< ::com::sun::star::beans::XPropertySet > &,
diff --git a/sd/source/filter/ppt/pptanimations.hxx b/sd/source/filter/ppt/pptanimations.hxx
index ba450518a5c1..0d909f8dfc92 100644
--- a/sd/source/filter/ppt/pptanimations.hxx
+++ b/sd/source/filter/ppt/pptanimations.hxx
@@ -213,7 +213,6 @@ public:
}
public:
- friend SvStream& ReadAnimationNode(SvStream& rIn, AnimationNode& rAtom);
friend SvStream& WriteAnimationNode(SvStream& rOut, AnimationNode& rAtom);
};
diff --git a/sd/source/ui/dlg/RemoteDialogClientBox.hxx b/sd/source/ui/dlg/RemoteDialogClientBox.hxx
index 0cc6df414eee..efcf9b89d61c 100644
--- a/sd/source/ui/dlg/RemoteDialogClientBox.hxx
+++ b/sd/source/ui/dlg/RemoteDialogClientBox.hxx
@@ -124,7 +124,6 @@ class ClientBox : public Control
long GetTotalHeight() const;
void SetupScrollBar();
void DrawRow(vcl::RenderContext& rRenderContext, const Rectangle& rRect, const TClientBoxEntry& rEntry);
- bool HandleTabKey( bool bReverse );
bool HandleCursorKey( sal_uInt16 nKeyCode );
void DeleteRemoved();
@@ -151,7 +150,6 @@ public:
long GetActiveEntryIndex();
long GetEntryCount() { return (long) m_vEntries.size(); }
Rectangle GetEntryRect( const long nPos ) const;
- bool HasActive() { return m_bHasActive; }
long PointToPos( const Point& rPos );
void DoScroll( long nDelta );
void RecalcAll();
diff --git a/sd/source/ui/inc/unosrch.hxx b/sd/source/ui/inc/unosrch.hxx
index 6b9705bfc073..81c600065ecb 100644
--- a/sd/source/ui/inc/unosrch.hxx
+++ b/sd/source/ui/inc/unosrch.hxx
@@ -92,9 +92,8 @@ public:
SdUnoSearchReplaceDescriptor(bool bReplace) throw (css::uno::RuntimeException);
virtual ~SdUnoSearchReplaceDescriptor() throw();
- bool IsBackwards() const throw() { return mbBackwards; }
- bool IsCaseSensitive() const throw() { return mbCaseSensitive; }
- bool IsWords() const throw() { return mbWords; }
+ bool IsCaseSensitive() const { return mbCaseSensitive; }
+ bool IsWords() const { return mbWords; }
UNO3_GETIMPLEMENTATION_DECL( SdUnoSearchReplaceDescriptor )
diff --git a/sd/source/ui/unoidl/unoobj.hxx b/sd/source/ui/unoidl/unoobj.hxx
index 8adba5afe608..5ec8ae052566 100644
--- a/sd/source/ui/unoidl/unoobj.hxx
+++ b/sd/source/ui/unoidl/unoobj.hxx
@@ -63,7 +63,6 @@ private:
bool IsMasterDepend() const throw();
void SetMasterDepend( bool bDepend ) throw();
- SdrObject* GetSdrObject() const throw();
OUString GetPlaceholderText() const;
com::sun::star::uno::Sequence< sal_Int8 >* mpImplementationId;