---------------------------------------------------------------------------
| 150 | } |
| 151 | //--------------------------------------------------------------------------- |
| 152 | void ReportError2(String fmt, ...) |
| 153 | { |
| 154 | #ifndef SYSTEMSERVICE |
| 155 | va_list argptr; |
| 156 | va_start(argptr, fmt); |
| 157 | String s; |
| 158 | s.vprintf(fmt.c_str(), argptr); |
| 159 | ShowMessage2(Screen->ActiveForm, |
| 160 | s, |
| 161 | Application->Title, //L"������", |
| 162 | true, // Modal |
| 163 | true); //Error |
| 164 | va_end(argptr); |
| 165 | #endif |
| 166 | } |
| 167 | //--------------------------------------------------------------------------- |
| 168 | void ReportMess2(String fmt, ...) |
| 169 | { |
no test coverage detected