---------------------------------------------------------------------------
| 182 | } |
| 183 | //--------------------------------------------------------------------------- |
| 184 | void ReportError3(bool bModal, TComponent * OwnerForm, String fmt, ...) |
| 185 | { |
| 186 | #ifndef SYSTEMSERVICE |
| 187 | va_list argptr; |
| 188 | va_start(argptr, fmt); |
| 189 | String s; |
| 190 | s.vprintf(fmt.c_str(), argptr); |
| 191 | ShowMessage2(OwnerForm, |
| 192 | s, |
| 193 | Application->Title, //L"������", |
| 194 | bModal, // Modal |
| 195 | true); //Error |
| 196 | va_end(argptr); |
| 197 | #endif |
| 198 | } |
| 199 | //--------------------------------------------------------------------------- |
| 200 | void ReportMess3(bool bModal, TComponent * OwnerForm, String fmt, ...) |
| 201 | { |
nothing calls this directly
no test coverage detected