forked from qt-creator/qt-creator
Remove unused member variable from debugger plugin
Change-Id: If630ba9b3d108c2b81316555e67d4bc6a6beb098 Reviewed-by: hjk <qthjk@ovi.com>
This commit is contained in:
@@ -125,7 +125,7 @@ class InputHighlighter : public QSyntaxHighlighter
|
||||
{
|
||||
public:
|
||||
InputHighlighter(QPlainTextEdit *parent)
|
||||
: QSyntaxHighlighter(parent->document()), m_parent(parent)
|
||||
: QSyntaxHighlighter(parent->document())
|
||||
{}
|
||||
|
||||
private:
|
||||
@@ -137,8 +137,6 @@ private:
|
||||
setFormat(1, text.size(), format);
|
||||
}
|
||||
}
|
||||
|
||||
QPlainTextEdit *m_parent;
|
||||
};
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user