ui: Errorview
Tabbed view with errorview as tab
This commit is contained in:
@@ -9,14 +9,16 @@ struct ErrorInfo
|
||||
ErrorInfo()
|
||||
: id(0)
|
||||
, isFatal(false)
|
||||
, isIndexed(false)
|
||||
{
|
||||
}
|
||||
|
||||
ErrorInfo(const std::string& message, const FilePath& filePath, Id id, bool isFatal)
|
||||
ErrorInfo(const std::string& message, const FilePath& filePath, Id id, bool isFatal, bool isIndexed)
|
||||
: message(message)
|
||||
, filePath(filePath)
|
||||
, id(id)
|
||||
, isFatal(isFatal)
|
||||
, isIndexed(isIndexed)
|
||||
{
|
||||
}
|
||||
|
||||
@@ -24,6 +26,7 @@ struct ErrorInfo
|
||||
FilePath filePath;
|
||||
Id id;
|
||||
bool isFatal;
|
||||
bool isIndexed;
|
||||
};
|
||||
|
||||
#endif // ERROR_INFO_H
|
||||
|
||||
Reference in New Issue
Block a user