| 751 | |
| 752 | |
| 753 | void cWindow::SetProperty(int a_Property, int a_Value) |
| 754 | { |
| 755 | cCSLock Lock(m_CS); |
| 756 | for (cPlayerList::iterator itr = m_OpenedBy.begin(), end = m_OpenedBy.end(); itr != end; ++itr) |
| 757 | { |
| 758 | (*itr)->GetClientHandle()->SendWindowProperty(*this, a_Property, a_Value); |
| 759 | } // for itr - m_OpenedBy[] |
| 760 | } |
| 761 | |
| 762 | |
| 763 |
nothing calls this directly
no test coverage detected