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

Change-Id: I8287b7eb761fc4b88e7f5acc7a0837b7a4634970
This commit is contained in:
Stephan Bergmann
2012-08-13 18:12:14 +02:00
parent bc8a8443a4
commit e7b2c4b13f
6 changed files with 0 additions and 11 deletions

View File

@@ -66,9 +66,6 @@ private:
::com::sun::star::uno::Reference< ::com::sun::star::awt::XWindow> mxWindow;
VCLXWindow* mpVCLXindow;
sal_uLong nDummy1;
sal_uLong nDummy2;
void* pDummy1;
VCLExternalSolarLock* m_pSolarLock;
protected:

View File

@@ -113,9 +113,6 @@ public:
class VCLXVirtualDevice : public VCLXDevice
{
private:
VirtualDevice* mpVDev;
public:
~VCLXVirtualDevice();

View File

@@ -83,7 +83,6 @@ public:
protected:
virtual void ProcessWindowEvent( const VclWindowEvent& rVclWindowEvent );
private:
sal_Int16 m_nActiveTabPageId;
TabPageListenerMultiplexer m_aTabPageListeners;
::std::vector< ::com::sun::star::uno::Reference< ::com::sun::star::awt::tab::XTabPage > > m_aTabPages;
};

View File

@@ -139,7 +139,6 @@ protected:
virtual void updateFromModel();
private:
TabPageListenerMultiplexer m_aTabPageListeners;
sal_Int16 m_nActiveTabPageId;
};
#endif // _TOOLKIT_TABPAGE_CONTAINER_HXX

View File

@@ -272,7 +272,6 @@ Reference< XPropertySetInfo > UnoGridModel::getPropertySetInfo( ) throw(Runtime
//======================================================================================================================
UnoGridControl::UnoGridControl( const Reference< XMultiServiceFactory >& i_factory )
:UnoGridControl_Base( i_factory )
,mSelectionMode(SelectionType(1))
,m_aSelectionListeners( *this )
,m_pEventForwarder( new GridEventForwarder( *this ) )
{

View File

@@ -30,7 +30,6 @@
#define TOOLKIT_GRID_CONTROL_HXX
#include <com/sun/star/awt/grid/XGridControl.hpp>
#include <com/sun/star/view/SelectionType.hpp>
#include <toolkit/controls/unocontrolbase.hxx>
#include <toolkit/controls/unocontrolmodel.hxx>
@@ -123,7 +122,6 @@ protected:
~UnoGridControl();
private:
::com::sun::star::view::SelectionType mSelectionMode;
SelectionListenerMultiplexer m_aSelectionListeners;
::boost::scoped_ptr< GridEventForwarder > m_pEventForwarder;
};