Clean up warnings due to missing 'override'.
This commit is contained in:
@@ -66,7 +66,7 @@ private Q_SLOTS:
|
||||
void onModeChanged(int);
|
||||
|
||||
protected:
|
||||
void changeEvent(QEvent *e);
|
||||
void changeEvent(QEvent *e) override;
|
||||
|
||||
private:
|
||||
double getLength(void) const;
|
||||
@@ -76,7 +76,7 @@ private:
|
||||
bool getMidplane(void) const;
|
||||
int getMode(void) const;
|
||||
QString getFaceName(void) const;
|
||||
void onSelectionChanged(const Gui::SelectionChanges& msg);
|
||||
void onSelectionChanged(const Gui::SelectionChanges& msg) override;
|
||||
void updateUI(int index);
|
||||
|
||||
private:
|
||||
|
||||
@@ -65,7 +65,7 @@ private Q_SLOTS:
|
||||
void onModeChanged(int);
|
||||
|
||||
protected:
|
||||
void changeEvent(QEvent *e);
|
||||
void changeEvent(QEvent *e) override;
|
||||
|
||||
private:
|
||||
double getLength(void) const;
|
||||
@@ -75,7 +75,7 @@ private:
|
||||
bool getReversed(void) const;
|
||||
QString getFaceName(void) const;
|
||||
|
||||
void onSelectionChanged(const Gui::SelectionChanges& msg);
|
||||
void onSelectionChanged(const Gui::SelectionChanges& msg) override;
|
||||
void updateUI(int index);
|
||||
|
||||
private:
|
||||
|
||||
@@ -71,8 +71,8 @@ private Q_SLOTS:
|
||||
void onReversed(bool);
|
||||
|
||||
protected:
|
||||
void onSelectionChanged(const Gui::SelectionChanges& msg);
|
||||
void changeEvent(QEvent *e);
|
||||
void onSelectionChanged(const Gui::SelectionChanges& msg) override;
|
||||
void changeEvent(QEvent *e) override;
|
||||
const bool updateView() const;
|
||||
void getReferenceAxis(App::DocumentObject *&obj, std::vector<std::string> &sub) const;
|
||||
double getAngle(void) const;
|
||||
|
||||
Reference in New Issue
Block a user