Make the new OpenGL chart type a compile time option.

And it's disabled for now.

Change-Id: I9a513d757960b61e7b2d6009eabf97a75b6c453e
This commit is contained in:
Kohei Yoshida
2014-03-25 22:50:02 -04:00
parent 44fc32edcd
commit 86090ef2fb
2 changed files with 4 additions and 0 deletions

View File

@@ -727,7 +727,9 @@ ChartTypeTabPage::ChartTypeTabPage(Window* pParent
m_aChartTypeDialogControllerList.push_back(new StockChartDialogController() );
}
m_aChartTypeDialogControllerList.push_back(new CombiColumnLineChartDialogController() );
#if ENABLE_GL3D_BARCHART
m_aChartTypeDialogControllerList.push_back(new GL3DBarChartDialogController());
#endif
::std::vector< ChartTypeDialogController* >::const_iterator aIter = m_aChartTypeDialogControllerList.begin();
const ::std::vector< ChartTypeDialogController* >::const_iterator aEnd = m_aChartTypeDialogControllerList.end();

View File

@@ -30,6 +30,8 @@
typeid( ex ).name() << ", Message: " << \
ex.Message )
#define ENABLE_GL3D_BARCHART 0
#endif
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */