Kaydet (Commit) 5aa51c08 authored tarafından Kohei Yoshida's avatar Kohei Yoshida

Description for m_aAllTickInfos.

Especially wrt why it is nested vectors.

Change-Id: I143785778ef62abbdc047a2d18c713f43a6522d9
üst 700ed579
...@@ -87,7 +87,16 @@ protected: //member ...@@ -87,7 +87,16 @@ protected: //member
::com::sun::star::uno::Reference< ::com::sun::star::drawing::XShapes > m_xGroupShape_Shapes; ::com::sun::star::uno::Reference< ::com::sun::star::drawing::XShapes > m_xGroupShape_Shapes;
::com::sun::star::uno::Reference< ::com::sun::star::drawing::XShapes > m_xTextTarget; ::com::sun::star::uno::Reference< ::com::sun::star::drawing::XShapes > m_xTextTarget;
::std::vector< ::std::vector< TickInfo > > m_aAllTickInfos; /**
* This typically consists of 2 TickInfo vectors (i.e. the outer vector
* has 2 child vector elements) for normal axis. The first vector
* corresponds with the major ticks while the second corresponds with the
* minor ticks.
*
* It may have more than 2 TickInfo vectors for complex category axis
* which has multi-level axis labels.
*/
std::vector< std::vector<TickInfo> > m_aAllTickInfos;
bool m_bReCreateAllTickInfos; bool m_bReCreateAllTickInfos;
bool m_bRecordMaximumTextSize; bool m_bRecordMaximumTextSize;
......
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