---------------------------------------------------------------------------
| 198 | } |
| 199 | //--------------------------------------------------------------------------- |
| 200 | void ReportMess3(bool bModal, TComponent * OwnerForm, String fmt, ...) |
| 201 | { |
| 202 | #ifndef SYSTEMSERVICE |
| 203 | va_list argptr; |
| 204 | va_start(argptr, fmt); |
| 205 | String s; |
| 206 | s.vprintf(fmt.c_str(), argptr); |
| 207 | ShowMessage2(OwnerForm, |
| 208 | s, |
| 209 | Application->Title, |
| 210 | bModal, // Modal |
| 211 | false); //Error |
| 212 | va_end(argptr); |
| 213 | #endif |
| 214 | } |
| 215 | //--------------------------------------------------------------------------- |
| 216 |
nothing calls this directly
no test coverage detected