| 279 | } |
| 280 | |
| 281 | Chart::Private::Private(Chart *chart_) |
| 282 | : chart(chart_) |
| 283 | , useNewLayoutSystem(false) |
| 284 | , layout(nullptr) |
| 285 | , vLayout(nullptr) |
| 286 | , planesLayout(nullptr) |
| 287 | , headerLayout(nullptr) |
| 288 | , footerLayout(nullptr) |
| 289 | , dataAndLegendLayout(nullptr) |
| 290 | , leftOuterSpacer(nullptr) |
| 291 | , rightOuterSpacer(nullptr) |
| 292 | , topOuterSpacer(nullptr) |
| 293 | , bottomOuterSpacer(nullptr) |
| 294 | , isFloatingLegendsLayoutDirty(true) |
| 295 | , isPlanesLayoutDirty(true) |
| 296 | , globalLeadingLeft(0) |
| 297 | , globalLeadingRight(0) |
| 298 | , globalLeadingTop(0) |
| 299 | , globalLeadingBottom(0) |
| 300 | { |
| 301 | for (int row = 0; row < 3; ++row) { |
| 302 | for (int column = 0; column < 3; ++column) { |
| 303 | for (int i = 0; i < 2; i++) { |
| 304 | innerHdFtLayouts[i][row][column] = nullptr; |
| 305 | } |
| 306 | } |
| 307 | } |
| 308 | } |
| 309 | |
| 310 | Chart::Private::~Private() |
| 311 | { |
nothing calls this directly
no outgoing calls
no test coverage detected