Kaydet (Commit) 27f4f9ae authored tarafından Stephan Bergmann's avatar Stephan Bergmann

-Werror,-Wunused-private-field (Clang towards 3.2)

Change-Id: Ia6f5bf7c3372515c2796d239aeb610fbe6f29f8d
üst e327840a
......@@ -148,13 +148,9 @@ SV_DECL_IMPL_REF(SbModule)
#endif
class SbClassModuleImpl;
// Object class for instances of class modules
class BASIC_DLLPUBLIC SbClassModuleObject : public SbModule
{
SbClassModuleImpl* mpSbClassModuleImpl;
SbModule* mpClassModule;
bool mbInitializeEventDone;
......
......@@ -200,12 +200,8 @@ public:
// SbxDimArray is an array that can dimensioned using BASIC conventions.
struct SbxDim;
class SbxDimArrayImpl;
class BASIC_DLLPUBLIC SbxDimArray : public SbxArray
{
SbxDimArrayImpl* mpSbxDimArrayImpl; // Impl data
SbxDim* pFirst, *pLast; // Links to Dimension table
short nDim; // Number of dimensions
BASIC_DLLPRIVATE void AddDimImpl32( sal_Int32, sal_Int32, sal_Bool bAllowSize0 );
......
......@@ -54,12 +54,8 @@ class SbxObject;
DBG_NAMEEX_VISIBILITY(SbxBase, BASIC_DLLPUBLIC)
class SbxBaseImpl;
class BASIC_DLLPUBLIC SbxBase : virtual public SvRefBase
{
SbxBaseImpl* mpSbxBaseImpl; // Impl data
virtual sal_Bool LoadData( SvStream&, sal_uInt16 );
virtual sal_Bool StoreData( SvStream& ) const;
protected:
......
......@@ -23,12 +23,8 @@
#include <basic/sbxvar.hxx>
#include "basicdllapi.h"
class SbxMethodImpl;
class BASIC_DLLPUBLIC SbxMethod : public SbxVariable
{
SbxMethodImpl* mpSbxMethodImpl; // Impl data
public:
SBX_DECL_PERSIST_NODATA(SBXCR_SBX,SBXID_METHOD,1);
TYPEINFO();
......
......@@ -23,12 +23,8 @@
#include <basic/sbxvar.hxx>
#include "basicdllapi.h"
class SbxPropertyImpl;
class BASIC_DLLPUBLIC SbxProperty : public SbxVariable
{
SbxPropertyImpl* mpSbxPropertyImpl; // Impl data
public:
SBX_DECL_PERSIST_NODATA(SBXCR_SBX,SBXID_PROPERTY,1);
TYPEINFO();
......
......@@ -281,7 +281,6 @@ class SbUnoServiceCtor : public SbxMethod
::com::sun::star::uno::Reference< ::com::sun::star::reflection::XServiceConstructorDescription > m_xServiceCtorDesc;
SbUnoServiceCtor* pPrev;
SbUnoServiceCtor* pNext;
public:
......
......@@ -302,7 +302,6 @@ sal_Bool hasUno( void )
class OslStream : public SvStream
{
osl::File maFile;
short mnStrmMode;
public:
OslStream( const String& rName, short nStrmMode );
......@@ -316,7 +315,6 @@ public:
OslStream::OslStream( const String& rName, short nStrmMode )
: maFile( rName )
, mnStrmMode( nStrmMode )
{
sal_uInt32 nFlags;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment