---------------------------------------------------------------------------
| 166 | } |
| 167 | //--------------------------------------------------------------------------- |
| 168 | void ReportMess2(String fmt, ...) |
| 169 | { |
| 170 | #ifndef SYSTEMSERVICE |
| 171 | va_list argptr; |
| 172 | va_start(argptr, fmt); |
| 173 | String s; |
| 174 | s.vprintf(fmt.c_str(), argptr); |
| 175 | ShowMessage2(Screen->ActiveForm, |
| 176 | s, |
| 177 | Application->Title, |
| 178 | true, // Modal |
| 179 | false); //Error |
| 180 | va_end(argptr); |
| 181 | #endif |
| 182 | } |
| 183 | //--------------------------------------------------------------------------- |
| 184 | void ReportError3(bool bModal, TComponent * OwnerForm, String fmt, ...) |
| 185 | { |
no test coverage detected