diff options
author | Stephan Bergmann <sbergman@redhat.com> | 2012-08-13 18:12:14 +0200 |
---|---|---|
committer | Stephan Bergmann <sbergman@redhat.com> | 2012-08-14 10:39:14 +0200 |
commit | e7b2c4b13f1572e4ded8613dfc7b187aafad87ff (patch) | |
tree | c11f9bab6321d60a650563cb237672961d3a1d90 /toolkit/source | |
parent | bc8a8443a4c9f85dbfa8e064d14c603f5a2d160f (diff) |
-Werror,-Wunused-private-field (Clang towards 3.2)
Change-Id: I8287b7eb761fc4b88e7f5acc7a0837b7a4634970
Diffstat (limited to 'toolkit/source')
-rw-r--r-- | toolkit/source/controls/grid/gridcontrol.cxx | 1 | ||||
-rw-r--r-- | toolkit/source/controls/grid/gridcontrol.hxx | 2 |
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; }; |