@@ -51,14 +51,14 @@ class Q_SLICER_QTMODULES_VIRTUALREALITY_EXPORT
5151
5252 qSlicerGetTitleMacro (QTMODULE_TITLE);
5353
54- virtual QString helpText ()const ;
55- virtual QString acknowledgementText ()const ;
56- virtual QStringList contributors ()const ;
54+ QString helpText ()const override ;
55+ QString acknowledgementText ()const override ;
56+ QStringList contributors ()const override ;
5757
58- virtual QIcon icon ()const ;
58+ QIcon icon ()const override ;
5959
60- virtual QStringList categories ()const ;
61- virtual QStringList dependencies () const ;
60+ QStringList categories ()const override ;
61+ QStringList dependencies () const override ;
6262
6363 Q_INVOKABLE bool isToolBarVisible ();
6464 Q_INVOKABLE QToolBar* toolBar ();
@@ -74,21 +74,21 @@ public slots:
7474
7575 // / Set MRML scene for the module. Updates the default view settings based on
7676 // / the application settings.
77- virtual void setMRMLScene (vtkMRMLScene* scene);
77+ void setMRMLScene (vtkMRMLScene* scene) override ;
7878
7979protected slots:
8080 void onViewNodeModified ();
8181
8282protected:
8383
8484 // / Initialize the module
85- virtual void setup ();
85+ void setup () override ;
8686
8787 // / Create and return the widget representation associated to this module
88- virtual qSlicerAbstractModuleRepresentation* createWidgetRepresentation ();
88+ qSlicerAbstractModuleRepresentation* createWidgetRepresentation () override ;
8989
9090 // / Create and return the logic associated to this module
91- virtual vtkMRMLAbstractLogic* createLogic ();
91+ vtkMRMLAbstractLogic* createLogic () override ;
9292
9393protected:
9494 QScopedPointer<qSlicerVirtualRealityModulePrivate> d_ptr;
0 commit comments