| 58 | } |
| 59 | |
| 60 | void ProgressCallback::DisplayFormattedDebugMessage(const char* format, ...) |
| 61 | { |
| 62 | va_list ap; |
| 63 | |
| 64 | va_start(ap, format); |
| 65 | const std::string str(StringUtil::StdStringFromFormatV(format, ap)); |
| 66 | va_end(ap); |
| 67 | |
| 68 | DisplayDebugMessage(str.c_str()); |
| 69 | } |
| 70 | |
| 71 | void ProgressCallback::DisplayFormattedModalError(const char* format, ...) |
| 72 | { |
no test coverage detected