| 351 | } |
| 352 | |
| 353 | void CANavigationController::setNavigationBarButtonColor(const CAColor4B &var) |
| 354 | { |
| 355 | m_sNavigationBarButtonColor = var; |
| 356 | |
| 357 | if (!m_pNavigationBars.empty()) |
| 358 | { |
| 359 | CADeque<CANavigationBar*>::iterator itr; |
| 360 | for (itr=m_pNavigationBars.begin(); itr!=m_pNavigationBars.end(); itr++) |
| 361 | { |
| 362 | (*itr)->setButtonColor(m_sNavigationBarButtonColor); |
| 363 | } |
| 364 | } |
| 365 | } |
| 366 | |
| 367 | const CAColor4B& CANavigationController::getNavigationBarButtonColor() |
| 368 | { |
nothing calls this directly
no test coverage detected