Add missing "override" to functions of exported classes

...exported ones or "shared" by other means

Change-Id: Ic4cc7a71426845c46bf3994a62b73b4ab5da321e
Reviewed-by: Alessandro Portale <alessandro.portale@qt.io>
This commit is contained in:
Alessandro Portale
2020-11-18 15:23:34 +01:00
parent 4517edd894
commit 97ed5ef910
12 changed files with 39 additions and 39 deletions

View File

@@ -98,7 +98,7 @@ protected:
virtual QString outputName() const = 0;
QString connectionName() const;
bool event(QEvent* event);
bool event(QEvent* event) override;
virtual void newConnectedServer(QLocalSocket *localSocket) = 0;

View File

@@ -69,11 +69,11 @@ signals:
void alphaChanged();
protected:
void paintEvent(QPaintEvent *event);
void paintEvent(QPaintEvent *event) override;
void mousePressEvent(QMouseEvent *);
void mouseReleaseEvent(QMouseEvent *);
void mouseMoveEvent(QMouseEvent *);
void mousePressEvent(QMouseEvent *) override;
void mouseReleaseEvent(QMouseEvent *) override;
void mouseMoveEvent(QMouseEvent *) override;
void setCurrent(int x, int y);
private:

View File

@@ -71,7 +71,7 @@ signals:
void removeAndChangeProperty(const QString &, const QString &, const QVariant &, bool removeFirst);
protected:
void timerEvent(QTimerEvent *event);
void timerEvent(QTimerEvent *event) override;
private:
Ui::ContextPaneTextWidget *ui;

View File

@@ -142,9 +142,9 @@ public:
void onRightMarginsChanged();
protected:
void changeEvent(QEvent *e);
void hideEvent(QHideEvent* event);
void showEvent(QShowEvent* event);
void changeEvent(QEvent *e) override;
void hideEvent(QHideEvent* event) override;
void showEvent(QShowEvent* event) override;
private:
Ui::ContextPaneWidgetImage *ui;

View File

@@ -64,7 +64,7 @@ signals:
void removeAndChangeProperty(const QString &, const QString &, const QVariant &, bool removeFirst);
protected:
void timerEvent(QTimerEvent *event);
void timerEvent(QTimerEvent *event) override;
private:
void setColor();

View File

@@ -49,10 +49,10 @@ signals:
void hueChanged(int hue);
protected:
void paintEvent(QPaintEvent *);
void mousePressEvent(QMouseEvent *);
void mouseReleaseEvent(QMouseEvent *);
void mouseMoveEvent(QMouseEvent *);
void paintEvent(QPaintEvent *) override;
void mousePressEvent(QMouseEvent *) override;
void mouseReleaseEvent(QMouseEvent *) override;
void mouseMoveEvent(QMouseEvent *) override;
void setCurrent(int y);
private:

View File

@@ -57,7 +57,7 @@ public:
// Use this to get the full path of a file or directory.
static const int PathRole = Qt::UserRole;
QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const;
QVariant data(const QModelIndex &index, int role = Qt::DisplayRole) const override;
signals:
/*
@@ -84,12 +84,12 @@ private:
void handleFileInfo(QSsh::SftpJobId jobId, const QList<QSsh::SftpFileInfo> &fileInfoList);
void handleSftpJobFinished(QSsh::SftpJobId jobId, const QString &errorMessage);
int columnCount(const QModelIndex &parent = QModelIndex()) const;
Qt::ItemFlags flags(const QModelIndex &index) const;
QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const;
QModelIndex index(int row, int column, const QModelIndex &parent = QModelIndex()) const;
QModelIndex parent(const QModelIndex &child) const;
int rowCount(const QModelIndex &parent = QModelIndex()) const;
int columnCount(const QModelIndex &parent = QModelIndex()) const override;
Qt::ItemFlags flags(const QModelIndex &index) const override;
QVariant headerData(int section, Qt::Orientation orientation, int role = Qt::DisplayRole) const override;
QModelIndex index(int row, int column, const QModelIndex &parent = QModelIndex()) const override;
QModelIndex parent(const QModelIndex &child) const override;
int rowCount(const QModelIndex &parent = QModelIndex()) const override;
void statRootDirectory();
void shutDown();

View File

@@ -73,7 +73,7 @@ private:
void selectBookmarkFolder(int index);
void customContextMenuRequested(const QPoint &point);
void currentChanged(const QModelIndex& current);
bool eventFilter(QObject *object, QEvent *e);
bool eventFilter(QObject *object, QEvent *e) override;
QString m_url;
QString m_title;
@@ -120,7 +120,7 @@ private:
void customContextMenuRequested(const QPoint &point);
void setup();
void expandItems();
bool eventFilter(QObject *object, QEvent *event);
bool eventFilter(QObject *object, QEvent *event) override;
QRegularExpression regExp;
TreeView *treeView;
@@ -138,8 +138,8 @@ public:
BookmarkModel(int rows, int columns, QObject *parent = 0);
~BookmarkModel();
Qt::DropActions supportedDropActions() const;
Qt::ItemFlags flags(const QModelIndex &index) const;
Qt::DropActions supportedDropActions() const override;
Qt::ItemFlags flags(const QModelIndex &index) const override;
};
class BookmarkManager : public QObject

View File

@@ -58,7 +58,7 @@ private:
void expandTOC();
void itemActivated(const QModelIndex &index);
void expandToDepth(int depth);
bool eventFilter(QObject *o, QEvent *e);
bool eventFilter(QObject *o, QEvent *e) override;
Utils::NavigationTreeView *m_contentWidget;
QHelpContentModel *m_contentModel;

View File

@@ -51,20 +51,20 @@ public:
IndexFilterModel(QObject *parent);
QModelIndex filter(const QString &filter, const QString &wildcard);
QModelIndex mapToSource(const QModelIndex &proxyIndex) const;
QModelIndex mapFromSource(const QModelIndex &sourceIndex) const;
Qt::DropActions supportedDragActions() const;
QModelIndex index(int row, int column, const QModelIndex &parent = QModelIndex()) const;
QModelIndex parent(const QModelIndex &child) const;
int rowCount(const QModelIndex &parent = QModelIndex()) const;
int columnCount(const QModelIndex &parent = QModelIndex()) const;
QModelIndex mapToSource(const QModelIndex &proxyIndex) const override;
QModelIndex mapFromSource(const QModelIndex &sourceIndex) const override;
Qt::DropActions supportedDragActions() const override;
QModelIndex index(int row, int column, const QModelIndex &parent = QModelIndex()) const override;
QModelIndex parent(const QModelIndex &child) const override;
int rowCount(const QModelIndex &parent = QModelIndex()) const override;
int columnCount(const QModelIndex &parent = QModelIndex()) const override;
void setSourceModel(QAbstractItemModel *sm);
void setSourceModel(QAbstractItemModel *sm) override;
// QAbstractProxyModel::sibling is broken in Qt 5
QModelIndex sibling(int row, int column, const QModelIndex &idx) const;
QModelIndex sibling(int row, int column, const QModelIndex &idx) const override;
Qt::ItemFlags flags(const QModelIndex &index) const;
Qt::ItemFlags flags(const QModelIndex &index) const override;
private:
void sourceDataChanged(const QModelIndex &topLeft, const QModelIndex &bottomRight);
@@ -95,7 +95,7 @@ private:
void filterIndices(const QString &filter);
void enableSearchLineEdit();
void disableSearchLineEdit();
bool eventFilter(QObject *obj, QEvent *e);
bool eventFilter(QObject *obj, QEvent *e) override;
void open(const QModelIndex &index, bool newPage = false);
Utils::FancyLineEdit *m_searchLineEdit;

View File

@@ -50,7 +50,7 @@ private:
void acceptDialog();
void setFilter(const QString &pattern);
void activated(const QModelIndex &index);
bool eventFilter(QObject *object, QEvent *event);
bool eventFilter(QObject *object, QEvent *event) override;
Ui::TopicChooser ui;
QList<QUrl> m_links;

View File

@@ -43,7 +43,7 @@ public:
void setActivationWindow(QWidget* aw, bool activateOnMessage = true);
QWidget* activationWindow() const;
bool event(QEvent *event);
bool event(QEvent *event) override;
QString applicationId() const;
void setBlock(bool value);