diff options
Diffstat (limited to 'src/codeeditor.h')
-rw-r--r-- | src/codeeditor.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/codeeditor.h b/src/codeeditor.h index a470a52..f25cdbf 100644 --- a/src/codeeditor.h +++ b/src/codeeditor.h @@ -67,6 +67,7 @@ protected: public slots: void runningLine(int lineno); + void errorLine(QString file, int lineno, QString msg); private slots: void updateLineNumberAreaWidth(int newBlockCount); @@ -76,6 +77,7 @@ private slots: private: QWidget *lineNumberArea; int lineNumber; + int errorLineNumber{0}; }; class LineNumberArea |