summaryrefslogtreecommitdiff
path: root/toolkit
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2012-08-13 18:12:14 +0200
committerStephan Bergmann <sbergman@redhat.com>2012-08-14 10:39:14 +0200
commite7b2c4b13f1572e4ded8613dfc7b187aafad87ff (patch)
treec11f9bab6321d60a650563cb237672961d3a1d90 /toolkit
parentbc8a8443a4c9f85dbfa8e064d14c603f5a2d160f (diff)
-Werror,-Wunused-private-field (Clang towards 3.2)
Change-Id: I8287b7eb761fc4b88e7f5acc7a0837b7a4634970
Diffstat (limited to 'toolkit')
-rw-r--r--toolkit/inc/toolkit/awt/vclxaccessiblecomponent.hxx3
-rw-r--r--toolkit/inc/toolkit/awt/vclxdevice.hxx3
-rw-r--r--toolkit/inc/toolkit/awt/vclxtabpagecontainer.hxx1
-rw-r--r--toolkit/inc/toolkit/controls/tabpagecontainer.hxx1
-rw-r--r--toolkit/source/controls/grid/gridcontrol.cxx1
-rw-r--r--toolkit/source/controls/grid/gridcontrol.hxx2
6 files changed, 0 insertions, 11 deletions
diff --git a/toolkit/inc/toolkit/awt/vclxaccessiblecomponent.hxx b/toolkit/inc/toolkit/awt/vclxaccessiblecomponent.hxx
index 97fe5190f65b..002c39b454d3 100644
--- a/toolkit/inc/toolkit/awt/vclxaccessiblecomponent.hxx
+++ b/toolkit/inc/toolkit/awt/vclxaccessiblecomponent.hxx
@@ -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:
diff --git a/toolkit/inc/toolkit/awt/vclxdevice.hxx b/toolkit/inc/toolkit/awt/vclxdevice.hxx
index eb9451b7a6bc..a817c59cbd39 100644
--- a/toolkit/inc/toolkit/awt/vclxdevice.hxx
+++ b/toolkit/inc/toolkit/awt/vclxdevice.hxx
@@ -113,9 +113,6 @@ public:
class VCLXVirtualDevice : public VCLXDevice
{
-private:
- VirtualDevice* mpVDev;
-
public:
~VCLXVirtualDevice();
diff --git a/toolkit/inc/toolkit/awt/vclxtabpagecontainer.hxx b/toolkit/inc/toolkit/awt/vclxtabpagecontainer.hxx
index 04fdb259e79d..b68b1f5f0780 100644
--- a/toolkit/inc/toolkit/awt/vclxtabpagecontainer.hxx
+++ b/toolkit/inc/toolkit/awt/vclxtabpagecontainer.hxx
@@ -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;
};
diff --git a/toolkit/inc/toolkit/controls/tabpagecontainer.hxx b/toolkit/inc/toolkit/controls/tabpagecontainer.hxx
index 134febbcbf38..0de305e2eac9 100644
--- a/toolkit/inc/toolkit/controls/tabpagecontainer.hxx
+++ b/toolkit/inc/toolkit/controls/tabpagecontainer.hxx
@@ -139,7 +139,6 @@ protected:
virtual void updateFromModel();
private:
TabPageListenerMultiplexer m_aTabPageListeners;
- sal_Int16 m_nActiveTabPageId;
};
#endif // _TOOLKIT_TABPAGE_CONTAINER_HXX
diff --git a/toolkit/source/controls/grid/gridcontrol.cxx b/toolkit/source/controls/grid/gridcontrol.cxx
index 97ceeff06739..23663a616e6e 100644
--- a/toolkit/source/controls/grid/gridcontrol.cxx
+++ b/toolkit/source/controls/grid/gridcontrol.cxx
@@ -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 ) )
{
diff --git a/toolkit/source/controls/grid/gridcontrol.hxx b/toolkit/source/controls/grid/gridcontrol.hxx
index 97283e7827b5..dfcbede15b00 100644
--- a/toolkit/source/controls/grid/gridcontrol.hxx
+++ b/toolkit/source/controls/grid/gridcontrol.hxx
@@ -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;
};