ui: display multi-line maven error messages (issue #622)

This commit is contained in:
mlangkabel
2018-10-05 13:32:25 +02:00
parent 9edfdacd72
commit 10658b2801
6 changed files with 71 additions and 56 deletions
+5
View File
@@ -75,6 +75,11 @@ unsigned int TextAccess::getLineCount() const
return m_lines.size();
}
bool TextAccess::isEmpty() const
{
return m_lines.empty();
}
FilePath TextAccess::getFilePath() const
{
return m_filePath;
+1
View File
@@ -16,6 +16,7 @@ public:
virtual ~TextAccess();
unsigned int getLineCount() const;
bool isEmpty() const;
FilePath getFilePath() const;