diff options
author | Julien Nabet <serval2412@yahoo.fr> | 2017-03-19 18:19:41 +0100 |
---|---|---|
committer | Julien Nabet <serval2412@yahoo.fr> | 2017-03-19 18:50:33 +0000 |
commit | b5bef1f7d5edb68a7609c2d003955461bfa9c5aa (patch) | |
tree | 704e3a5851daf9c115886acc19aafa79f5badd17 /chart2 | |
parent | 38e6da9f23a29d297701a35b213b7b38c4f67bda (diff) |
Typos
Change-Id: I13020539fe121151e884a90d72d47788fb3ae65c
Reviewed-on: https://gerrit.libreoffice.org/35436
Tested-by: Jenkins <ci@libreoffice.org>
Reviewed-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'chart2')
7 files changed, 10 insertions, 10 deletions
diff --git a/chart2/source/controller/sidebar/ChartAreaPanel.hxx b/chart2/source/controller/sidebar/ChartAreaPanel.hxx index e510082222fa..234a23e4f392 100644 --- a/chart2/source/controller/sidebar/ChartAreaPanel.hxx +++ b/chart2/source/controller/sidebar/ChartAreaPanel.hxx @@ -56,7 +56,7 @@ public: const css::uno::Reference<css::frame::XFrame>& rxFrame, ChartController* pController); - // constructor/destuctor + // constructor/destructor ChartAreaPanel( vcl::Window* pParent, const css::uno::Reference<css::frame::XFrame>& rxFrame, diff --git a/chart2/source/controller/sidebar/ChartAxisPanel.hxx b/chart2/source/controller/sidebar/ChartAxisPanel.hxx index 51da3511563c..a6fe43feb11f 100644 --- a/chart2/source/controller/sidebar/ChartAxisPanel.hxx +++ b/chart2/source/controller/sidebar/ChartAxisPanel.hxx @@ -58,7 +58,7 @@ public: const SfxPoolItem* pState, const bool bIsEnabled) override; - // constructor/destuctor + // constructor/destructor ChartAxisPanel( vcl::Window* pParent, const css::uno::Reference<css::frame::XFrame>& rxFrame, diff --git a/chart2/source/controller/sidebar/ChartElementsPanel.hxx b/chart2/source/controller/sidebar/ChartElementsPanel.hxx index e1fbe5767ff2..4dd6e6e5c980 100644 --- a/chart2/source/controller/sidebar/ChartElementsPanel.hxx +++ b/chart2/source/controller/sidebar/ChartElementsPanel.hxx @@ -56,7 +56,7 @@ public: virtual void HandleContextChange( const vcl::EnumContext& rContext) override; - // constructor/destuctor + // constructor/destructor ChartElementsPanel( vcl::Window* pParent, const css::uno::Reference<css::frame::XFrame>& rxFrame, diff --git a/chart2/source/controller/sidebar/ChartErrorBarPanel.hxx b/chart2/source/controller/sidebar/ChartErrorBarPanel.hxx index b68d33cd9e85..5a55b7402293 100644 --- a/chart2/source/controller/sidebar/ChartErrorBarPanel.hxx +++ b/chart2/source/controller/sidebar/ChartErrorBarPanel.hxx @@ -56,7 +56,7 @@ public: const SfxPoolItem* pState, const bool bIsEnabled) override; - // constructor/destuctor + // constructor/destructor ChartErrorBarPanel( vcl::Window* pParent, const css::uno::Reference<css::frame::XFrame>& rxFrame, diff --git a/chart2/source/controller/sidebar/ChartLinePanel.hxx b/chart2/source/controller/sidebar/ChartLinePanel.hxx index e538d3208586..6222a1ddfa55 100644 --- a/chart2/source/controller/sidebar/ChartLinePanel.hxx +++ b/chart2/source/controller/sidebar/ChartLinePanel.hxx @@ -56,7 +56,7 @@ public: const css::uno::Reference<css::frame::XFrame>& rxFrame, ChartController* pController); - // constructor/destuctor + // constructor/destructor ChartLinePanel( vcl::Window* pParent, const css::uno::Reference<css::frame::XFrame>& rxFrame, diff --git a/chart2/source/controller/sidebar/ChartSeriesPanel.hxx b/chart2/source/controller/sidebar/ChartSeriesPanel.hxx index d38eb797dbfc..2569f617bf18 100644 --- a/chart2/source/controller/sidebar/ChartSeriesPanel.hxx +++ b/chart2/source/controller/sidebar/ChartSeriesPanel.hxx @@ -66,7 +66,7 @@ public: const SfxPoolItem* pState, const bool bIsEnabled) override; - // constructor/destuctor + // constructor/destructor ChartSeriesPanel( vcl::Window* pParent, const css::uno::Reference<css::frame::XFrame>& rxFrame, diff --git a/chart2/source/tools/DataSourceHelper.cxx b/chart2/source/tools/DataSourceHelper.cxx index 7eff294e22ed..0759797eb49a 100644 --- a/chart2/source/tools/DataSourceHelper.cxx +++ b/chart2/source/tools/DataSourceHelper.cxx @@ -241,7 +241,7 @@ uno::Reference< chart2::data::XDataSource > DataSourceHelper::pressUsedDataIntoR std::vector< Reference< chart2::XDataSeries > > aSeriesVector( DiagramHelper::getDataSeriesFromDiagram( xDiagram ) ); uno::Reference< chart2::data::XDataSource > xSeriesSource( DataSeriesHelper::getDataSource( comphelper::containerToSequence(aSeriesVector) ) ); - Sequence< Reference< chart2::data::XLabeledDataSequence > > aDataSeqences( xSeriesSource->getDataSequences() ); + Sequence< Reference< chart2::data::XLabeledDataSequence > > aDataSequences( xSeriesSource->getDataSequences() ); //the first x-values is always the next sequence //todo ... other x-values get lost for old format Reference< chart2::data::XLabeledDataSequence > xXValues( @@ -250,11 +250,11 @@ uno::Reference< chart2::data::XDataSource > DataSourceHelper::pressUsedDataIntoR aResultVector.push_back( xXValues ); //add all other sequences now without x-values - for( sal_Int32 nN=0; nN<aDataSeqences.getLength(); nN++ ) + for( sal_Int32 nN=0; nN<aDataSequences.getLength(); nN++ ) { - OUString aRole = DataSeriesHelper::getRole(aDataSeqences[nN]); + OUString aRole = DataSeriesHelper::getRole(aDataSequences[nN]); if( aRole != "values-x" ) - aResultVector.push_back( aDataSeqences[nN] ); + aResultVector.push_back( aDataSequences[nN] ); } return new DataSource( comphelper::containerToSequence(aResultVector) ); |