Kaydet (Commit) 20bb2e70 authored tarafından Andras Timar's avatar Andras Timar

GL3D Bar chart -> experimental

Change-Id: I2d5948651e5c31a6ce3cadcc9ff09683a60d49bd
Reviewed-on: https://gerrit.libreoffice.org/16022Tested-by: 's avatarJenkins <ci@libreoffice.org>
Reviewed-by: 's avatarAndras Timar <andras.timar@collabora.com>
üst 7e5c1101
...@@ -29,6 +29,7 @@ ...@@ -29,6 +29,7 @@
#include <unonames.hxx> #include <unonames.hxx>
#include <svtools/controldims.hrc> #include <svtools/controldims.hrc>
#include <svtools/miscopt.hxx>
#include <vcl/layout.hxx> #include <vcl/layout.hxx>
#include <vcl/msgbox.hxx> #include <vcl/msgbox.hxx>
...@@ -765,7 +766,9 @@ ChartTypeTabPage::ChartTypeTabPage(vcl::Window* pParent ...@@ -765,7 +766,9 @@ ChartTypeTabPage::ChartTypeTabPage(vcl::Window* pParent
} }
m_aChartTypeDialogControllerList.push_back(new CombiColumnLineChartDialogController() ); m_aChartTypeDialogControllerList.push_back(new CombiColumnLineChartDialogController() );
#if ENABLE_GL3D_BARCHART #if ENABLE_GL3D_BARCHART
m_aChartTypeDialogControllerList.push_back(new GL3DBarChartDialogController()); SvtMiscOptions aOpts;
if ( aOpts.IsExperimentalMode() )
m_aChartTypeDialogControllerList.push_back(new GL3DBarChartDialogController());
#endif #endif
::std::vector< ChartTypeDialogController* >::const_iterator aIter = m_aChartTypeDialogControllerList.begin(); ::std::vector< ChartTypeDialogController* >::const_iterator aIter = m_aChartTypeDialogControllerList.begin();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment