Base: modernize C++: use override
This commit is contained in:
@@ -646,7 +646,7 @@ class BaseExport Builder3D : public InventorBuilder
|
||||
{
|
||||
public:
|
||||
Builder3D();
|
||||
virtual ~Builder3D();
|
||||
~Builder3D() override;
|
||||
|
||||
/// clear the string buffer
|
||||
void clear();
|
||||
|
||||
@@ -65,7 +65,7 @@ public:
|
||||
QtApplication(int &argc, char **argv)
|
||||
: QApplication(argc, argv) {
|
||||
}
|
||||
bool notify (QObject * receiver, QEvent * event) {
|
||||
bool notify (QObject * receiver, QEvent * event) override {
|
||||
try {
|
||||
return QApplication::notify(receiver, event);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user