| 153 | } |
| 154 | |
| 155 | void CDialogHolder::DoRenderDialogs() |
| 156 | { |
| 157 | xr_vector<dlgItem>::iterator it = m_dialogsToRender.begin(); |
| 158 | for (; it != m_dialogsToRender.end(); ++it) |
| 159 | { |
| 160 | if ((*it).enabled && (*it).wnd->IsShown()) |
| 161 | (*it).wnd->Draw(); |
| 162 | } |
| 163 | } |
| 164 | |
| 165 | CUIDialogWnd* CDialogHolder::MainInputReceiver() |
| 166 | { |