summaryrefslogtreecommitdiff
path: root/svl
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2012-08-13 15:31:42 +0200
committerStephan Bergmann <sbergman@redhat.com>2012-08-14 10:39:13 +0200
commit58d03e38aa42c1515c0b467148ae796402872776 (patch)
treece32df45d93e9af4fa54b6a714e9e479c70bbae0 /svl
parent103be64d430aec45ed4c6b170aad5001e16354df (diff)
-Werror,-Wunused-private-field (Clang towards 3.2)
Change-Id: I792247193e98cbf9225ec103911920e7f63640bf
Diffstat (limited to 'svl')
-rw-r--r--svl/inc/svl/strmadpt.hxx3
-rw-r--r--svl/inc/svl/style.hxx1
2 files changed, 1 insertions, 3 deletions
diff --git a/svl/inc/svl/strmadpt.hxx b/svl/inc/svl/strmadpt.hxx
index aec2dcac29c9..167d3696d3a2 100644
--- a/svl/inc/svl/strmadpt.hxx
+++ b/svl/inc/svl/strmadpt.hxx
@@ -71,11 +71,10 @@ class SVL_DLLPUBLIC SvLockBytesInputStream: public cppu::OWeakObject,
{
SvLockBytesRef m_xLockBytes;
sal_Int64 m_nPosition;
- bool m_bDone;
public:
SvLockBytesInputStream(SvLockBytes * pTheLockBytes):
- m_xLockBytes(pTheLockBytes), m_nPosition(0), m_bDone(false) {}
+ m_xLockBytes(pTheLockBytes), m_nPosition(0) {}
virtual com::sun::star::uno::Any SAL_CALL
queryInterface(const com::sun::star::uno::Type & rType)
diff --git a/svl/inc/svl/style.hxx b/svl/inc/svl/style.hxx
index 34edeb572715..e8eb492aae2e 100644
--- a/svl/inc/svl/style.hxx
+++ b/svl/inc/svl/style.hxx
@@ -179,7 +179,6 @@ private:
SVL_DLLPRIVATE sal_Bool IsTrivialSearch();
SVL_DLLPRIVATE sal_Bool DoesStyleMatch(SfxStyleSheetBase *pStyle);
- void* pImp;
SfxStyleSheetBase* pAktStyle;
sal_uInt16 nAktPosition;
sal_Bool bSearchUsed;