chart2/source/controller/sidebar/ChartTypePanel.cxx | 1 + 1 file changed, 1 insertion(+)
New commits: commit c69fbc94827ddb8788e27204a2e8597de9f13ac3 Author: Julien Nabet <serval2...@yahoo.fr> AuthorDate: Sun Sep 22 10:13:23 2024 +0200 Commit: Julien Nabet <serval2...@yahoo.fr> CommitDate: Sun Sep 22 11:29:17 2024 +0200 tdf#163084: add Histogram chart in sidebar Change-Id: I7f5d2f22c340d4f04b6c04fac04079ae2a29b32c Reviewed-on: https://gerrit.libreoffice.org/c/core/+/173767 Reviewed-by: Julien Nabet <serval2...@yahoo.fr> Tested-by: Jenkins diff --git a/chart2/source/controller/sidebar/ChartTypePanel.cxx b/chart2/source/controller/sidebar/ChartTypePanel.cxx index e89b269f9c1c..38ea92912a19 100644 --- a/chart2/source/controller/sidebar/ChartTypePanel.cxx +++ b/chart2/source/controller/sidebar/ChartTypePanel.cxx @@ -85,6 +85,7 @@ ChartTypePanel::ChartTypePanel(weld::Widget* pParent, ::chart::ChartController* m_aChartTypeDialogControllerList.push_back(std::make_unique<ColumnChartDialogController>()); m_aChartTypeDialogControllerList.push_back(std::make_unique<BarChartDialogController>()); + m_aChartTypeDialogControllerList.push_back(std::make_unique<HistogramChartDialogController>()); m_aChartTypeDialogControllerList.push_back(std::make_unique<PieChartDialogController>()); m_aChartTypeDialogControllerList.push_back(std::make_unique<OfPieChartDialogController>()); m_aChartTypeDialogControllerList.push_back(std::make_unique<AreaChartDialogController>());