| 644 | } |
| 645 | |
| 646 | CAWaterfallViewCell* CAWaterfallView::dequeueReusableCellWithIdentifier(const char* reuseIdentifier) |
| 647 | { |
| 648 | CAWaterfallViewCell* cell = NULL; |
| 649 | |
| 650 | if (reuseIdentifier && !m_mpFreedWaterfallCells[reuseIdentifier].empty()) |
| 651 | { |
| 652 | cell = m_mpFreedWaterfallCells[reuseIdentifier].back(); |
| 653 | cell->retain()->autorelease(); |
| 654 | m_mpFreedWaterfallCells[reuseIdentifier].popBack(); |
| 655 | } |
| 656 | |
| 657 | return cell; |
| 658 | } |
| 659 | |
| 660 | CAWaterfallViewCell* CAWaterfallView::getHighlightWaterfallCell() |
| 661 | { |
nothing calls this directly
no test coverage detected