Misc: modernize C++: use override

This commit is contained in:
wmayer
2023-08-04 14:37:25 +02:00
committed by wwmayer
parent ed251a914b
commit b8a7849dd3
12 changed files with 23 additions and 22 deletions

View File

@@ -75,7 +75,7 @@ public:
void helpRequested() override;
/// returns for Close and Help button
virtual QDialogButtonBox::StandardButtons getStandardButtons() const override
QDialogButtonBox::StandardButtons getStandardButtons() const override
{ return QDialogButtonBox::Ok|QDialogButtonBox::Cancel; }
protected:

View File

@@ -73,7 +73,7 @@ public:
std::vector<std::string> getDisplayModes() const override;
void updateData(const App::Property*) override;
void recomputeBoundingBox();
virtual QIcon getIcon() const override;
QIcon getIcon() const override;
bool useNewSelectionModel() const override;
std::string getElement(const SoDetail *) const override;