summaryrefslogtreecommitdiff
path: root/toolkit/source/controls
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/source/controls
parentbc8a8443a4c9f85dbfa8e064d14c603f5a2d160f (diff)
-Werror,-Wunused-private-field (Clang towards 3.2)
Change-Id: I8287b7eb761fc4b88e7f5acc7a0837b7a4634970
Diffstat (limited to 'toolkit/source/controls')
-rw-r--r--toolkit/source/controls/grid/gridcontrol.cxx1
-rw-r--r--toolkit/source/controls/grid/gridcontrol.hxx2
2 files changed, 0 insertions, 3 deletions
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;
};