* added database field indexed to error to tell if the error occured within an indexed file * added checkbox to Preferences for showing them
21 lines
274 B
C
21 lines
274 B
C
#ifndef ERROR_COUNT_INFO_H
|
|
#define ERROR_COUNT_INFO_H
|
|
|
|
struct ErrorCountInfo
|
|
{
|
|
ErrorCountInfo()
|
|
: total(0)
|
|
, fatal(0)
|
|
{}
|
|
|
|
ErrorCountInfo(size_t total, size_t fatal)
|
|
: total(total)
|
|
, fatal(fatal)
|
|
{}
|
|
|
|
size_t total;
|
|
size_t fatal;
|
|
};
|
|
|
|
#endif // ERROR_COUNT_INFO_H
|