| 14 | ProgressCallback::~ProgressCallback() {} |
| 15 | |
| 16 | void ProgressCallback::SetFormattedStatusText(const char* Format, ...) |
| 17 | { |
| 18 | va_list ap; |
| 19 | |
| 20 | va_start(ap, Format); |
| 21 | const std::string str(StringUtil::StdStringFromFormatV(Format, ap)); |
| 22 | va_end(ap); |
| 23 | |
| 24 | SetStatusText(str.c_str()); |
| 25 | } |
| 26 | |
| 27 | void ProgressCallback::DisplayFormattedError(const char* format, ...) |
| 28 | { |
no test coverage detected