| 97 | } |
| 98 | |
| 99 | inline void cUserFeedback::Notify(const char* fmt, ...) |
| 100 | { |
| 101 | va_list args; |
| 102 | va_start(args, fmt); |
| 103 | m_entries.Push(sEntry(UF_NOTIFICATION, fmt, args)); |
| 104 | va_end(args); |
| 105 | } |
| 106 | |
| 107 | inline void cUserFeedback::Append(const cUserFeedback& uf) |
| 108 | { |
no test coverage detected