forked from qt-creator/qt-creator
Add override to IDocument hierarchy
Change-Id: I6884f59fe0f06e380254c1f8076dd561d9df4ee3 Reviewed-by: Tobias Hunger <tobias.hunger@theqtcompany.com>
This commit is contained in:
@@ -50,7 +50,7 @@ class QMLJSEDITOR_EXPORT QmlJSEditorDocument : public TextEditor::TextDocument
|
||||
Q_OBJECT
|
||||
public:
|
||||
QmlJSEditorDocument();
|
||||
~QmlJSEditorDocument();
|
||||
~QmlJSEditorDocument() override;
|
||||
|
||||
const QmlJSTools::SemanticInfo &semanticInfo() const;
|
||||
bool isSemanticInfoOutdated() const;
|
||||
@@ -63,8 +63,8 @@ signals:
|
||||
void semanticInfoUpdated(const QmlJSTools::SemanticInfo &semanticInfo);
|
||||
|
||||
protected:
|
||||
void applyFontSettings();
|
||||
void triggerPendingUpdates();
|
||||
void applyFontSettings() override;
|
||||
void triggerPendingUpdates() override;
|
||||
|
||||
private:
|
||||
friend class Internal::QmlJSEditorDocumentPrivate; // sending signals
|
||||
|
||||
Reference in New Issue
Block a user