parent
7e65b561f0
commit
5df9cd90a6
|
@ -84,18 +84,15 @@ public:
|
|||
*/
|
||||
void setError(int errorLine, const QStringList &symbols);
|
||||
|
||||
void setFileName(const QString &fileName)
|
||||
{
|
||||
void setFileName(const QString &fileName) {
|
||||
mFileName = fileName;
|
||||
}
|
||||
|
||||
QString getFileName() const
|
||||
{
|
||||
QString getFileName() const {
|
||||
return mFileName;
|
||||
}
|
||||
|
||||
void clear()
|
||||
{
|
||||
void clear() {
|
||||
mFileName.clear();
|
||||
setPlainText(QString());
|
||||
}
|
||||
|
|
|
@ -429,8 +429,7 @@ void ResultsView::updateDetails(const QModelIndex &index)
|
|||
if (data.contains("symbolNames"))
|
||||
symbols = data["symbolNames"].toString().split("\n");
|
||||
|
||||
if (filepath == mUI.mCode->getFileName())
|
||||
{
|
||||
if (filepath == mUI.mCode->getFileName()) {
|
||||
mUI.mCode->setError(lineNumber, symbols);
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue