diff options
author | Bjoern Michaelsen <bjoern.michaelsen@canonical.com> | 2013-03-03 12:45:21 +0100 |
---|---|---|
committer | Bjoern Michaelsen <bjoern.michaelsen@canonical.com> | 2013-03-03 12:45:21 +0100 |
commit | fa878018dec1ce9fd3589066128d0647d3664465 (patch) | |
tree | bebbf23413a822f6d31aa1c8070663ebd0a42ed4 | |
parent | 9a6ab1568d2c5bad7d546433d1bc62829050aa37 (diff) |
fdo#60724: fix resizeable -> resizable misspelling found by lintian
Change-Id: I07488c02277292f96c08be6155edf0158976cc0b
-rw-r--r-- | chart2/source/controller/main/ChartController_Window.cxx | 2 | ||||
-rw-r--r-- | svtools/source/table/tablecontrol_impl.cxx | 2 | ||||
-rw-r--r-- | toolkit/source/controls/grid/gridcontrol.cxx | 2 | ||||
-rw-r--r-- | vcl/source/window/splitwin.cxx | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/chart2/source/controller/main/ChartController_Window.cxx b/chart2/source/controller/main/ChartController_Window.cxx index 193f80a2ceec..a104d13b9a60 100644 --- a/chart2/source/controller/main/ChartController_Window.cxx +++ b/chart2/source/controller/main/ChartController_Window.cxx @@ -649,7 +649,7 @@ void ChartController::execute_MouseButtonDown( const MouseEvent& rMEvt ) return;//double click is handled further in mousebutton up SdrHdl* pHitSelectionHdl = 0; - //switch from move to resize if handle is hit on a resizeable object + //switch from move to resize if handle is hit on a resizable object if( m_aSelection.isResizeableObjectSelected() ) pHitSelectionHdl = pDrawViewWrapper->PickHandle( aMPos ); //only change selection if no selection handles are hit diff --git a/svtools/source/table/tablecontrol_impl.cxx b/svtools/source/table/tablecontrol_impl.cxx index 99f05e584025..7e4e5cd3db75 100644 --- a/svtools/source/table/tablecontrol_impl.cxx +++ b/svtools/source/table/tablecontrol_impl.cxx @@ -966,7 +966,7 @@ namespace svt { namespace table ::sal_Int32 flexibility = pColumn->getFlexibility(); OSL_ENSURE( flexibility >= 0, "TableControl_Impl::impl_ni_calculateColumnWidths: a column's flexibility should be non-negative." ); if ( ( flexibility < 0 ) // normalization - || ( !pColumn->isResizable() ) // column not resizeable => no auto-resize + || ( !pColumn->isResizable() ) // column not resizable => no auto-resize || ( col <= i_assumeInflexibleColumnsUpToIncluding ) // column shall be treated as inflexible => respec this ) flexibility = 0; diff --git a/toolkit/source/controls/grid/gridcontrol.cxx b/toolkit/source/controls/grid/gridcontrol.cxx index 22bc2d743624..bf169595abaf 100644 --- a/toolkit/source/controls/grid/gridcontrol.cxx +++ b/toolkit/source/controls/grid/gridcontrol.cxx @@ -80,7 +80,7 @@ UnoGridModel::UnoGridModel( const ::com::sun::star::uno::Reference< ::com::sun:: ImplRegisterProperty( BASEPROPERTY_HELPTEXT ); ImplRegisterProperty( BASEPROPERTY_HELPURL ); ImplRegisterProperty( BASEPROPERTY_PRINTABLE ); - ImplRegisterProperty( BASEPROPERTY_SIZEABLE ); // resizeable + ImplRegisterProperty( BASEPROPERTY_SIZEABLE ); // resizable ImplRegisterProperty( BASEPROPERTY_HSCROLL ); ImplRegisterProperty( BASEPROPERTY_VSCROLL ); ImplRegisterProperty( BASEPROPERTY_TABSTOP ); diff --git a/vcl/source/window/splitwin.cxx b/vcl/source/window/splitwin.cxx index e3eb5c139fb2..9805e5ae12d0 100644 --- a/vcl/source/window/splitwin.cxx +++ b/vcl/source/window/splitwin.cxx @@ -1193,7 +1193,7 @@ sal_uInt16 SplitWindow::ImplTestSplit( ImplSplitSet* pSet, const Point& rPos, sal_uInt16 SplitWindow::ImplTestSplit( SplitWindow* pWindow, const Point& rPos, long& rMouseOff, ImplSplitSet** ppFoundSet, sal_uInt16& rFoundPos ) { - // Resizeable SplitWindow muss anders behandelt werden + // Resizable SplitWindow muss anders behandelt werden if ( pWindow->mnWinStyle & WB_SIZEABLE ) { long nTPos; |