| 2954 | } |
| 2955 | |
| 2956 | IAccProxy * SWindow::GetAccProxy() { |
| 2957 | #ifdef SOUI_ENABLE_ACC |
| 2958 | if (!m_pAccProxy) |
| 2959 | { |
| 2960 | m_pAccProxy.Attach(SApplication::getSingleton().CreateAccProxy(this)); |
| 2961 | } |
| 2962 | return m_pAccProxy; |
| 2963 | #else |
| 2964 | return NULL; |
| 2965 | #endif |
| 2966 | } |
| 2967 | |
| 2968 | void SWindow::accNotifyEvent(DWORD dwEvt) |
| 2969 | { |
no test coverage detected