Method: GetText FullName: CLabelUI::GetText Access: public Returns: UiLib::CDuiString Qualifier: const Note:
| 555 | // Note: |
| 556 | //************************************ |
| 557 | CDuiString CLabelUI::GetText() const |
| 558 | { |
| 559 | try |
| 560 | { |
| 561 | if(!m_EnableEffect) |
| 562 | return CControlUI::GetText(); |
| 563 | return m_TextValue; |
| 564 | } |
| 565 | catch (...) |
| 566 | { |
| 567 | throw "CLabelUI::GetText"; |
| 568 | } |
| 569 | } |
| 570 | |
| 571 | //************************************ |
| 572 | // Method: SetEnabledEffect |
nothing calls this directly
no outgoing calls
no test coverage detected