diff --git a/ApplicationCode/ProjectDataModel/Completions/RimFishbonesMultipleSubs.h b/ApplicationCode/ProjectDataModel/Completions/RimFishbonesMultipleSubs.h index 6de03dbd6a..8bf1f9bf9f 100644 --- a/ApplicationCode/ProjectDataModel/Completions/RimFishbonesMultipleSubs.h +++ b/ApplicationCode/ProjectDataModel/Completions/RimFishbonesMultipleSubs.h @@ -106,11 +106,11 @@ public: virtual cvf::BoundingBox boundingBoxInDomainCoords() const override; // Overrides from RimWellPathCompletionsInterface - virtual RiaDefines::WellPathComponentType componentType() const override; - virtual double startMD() const override; - virtual double endMD() const override; - virtual QString componentLabel() const override; - virtual QString componentTypeLabel() const override; + RiaDefines::WellPathComponentType componentType() const override; + double startMD() const override; + double endMD() const override; + QString componentLabel() const override; + QString componentTypeLabel() const override; public: diff --git a/ApplicationCode/ProjectDataModel/Completions/RimFracture.h b/ApplicationCode/ProjectDataModel/Completions/RimFracture.h index 2f8aee7ab3..88400e2db5 100644 --- a/ApplicationCode/ProjectDataModel/Completions/RimFracture.h +++ b/ApplicationCode/ProjectDataModel/Completions/RimFracture.h @@ -129,11 +129,11 @@ public: friend class RimFractureTemplate; // RimWellPathCompletionsInterface overrides. - virtual RiaDefines::WellPathComponentType componentType() const override; - virtual double startMD() const override; - virtual double endMD() const override; - virtual QString componentLabel() const override; - virtual QString componentTypeLabel() const override; + RiaDefines::WellPathComponentType componentType() const override; + double startMD() const override; + double endMD() const override; + QString componentLabel() const override; + QString componentTypeLabel() const override; protected: virtual QList calculateValueOptions(const caf::PdmFieldHandle* fieldNeedingOptions, bool * useOptionsOnly) override; diff --git a/ApplicationCode/ProjectDataModel/Completions/RimPerforationInterval.h b/ApplicationCode/ProjectDataModel/Completions/RimPerforationInterval.h index 18101976b4..04a21ba293 100644 --- a/ApplicationCode/ProjectDataModel/Completions/RimPerforationInterval.h +++ b/ApplicationCode/ProjectDataModel/Completions/RimPerforationInterval.h @@ -61,11 +61,11 @@ public: void setUnitSystemSpecificDefaults(); // RimWellPathCompletionInterface overrides - virtual RiaDefines::WellPathComponentType componentType() const override; - virtual double startMD() const; - virtual double endMD() const; - virtual QString componentLabel() const override; - virtual QString componentTypeLabel() const override; + RiaDefines::WellPathComponentType componentType() const override; + double startMD() const; + double endMD() const; + QString componentLabel() const override; + QString componentTypeLabel() const override; protected: virtual void defineUiOrdering( QString uiConfigName, caf::PdmUiOrdering& uiOrdering ) override; diff --git a/ApplicationCode/ProjectDataModel/RimWellPathAttribute.h b/ApplicationCode/ProjectDataModel/RimWellPathAttribute.h index b911f8d4b8..59a5d2ff5a 100644 --- a/ApplicationCode/ProjectDataModel/RimWellPathAttribute.h +++ b/ApplicationCode/ProjectDataModel/RimWellPathAttribute.h @@ -46,11 +46,11 @@ public: void setDepthsFromWellPath(const RimWellPath* wellPath); // Overrides from RimWellPathCompletionInterface - virtual RiaDefines::WellPathComponentType componentType() const override; - virtual double startMD() const override; - virtual double endMD() const override; - virtual QString componentLabel() const override; - virtual QString componentTypeLabel() const override; + RiaDefines::WellPathComponentType componentType() const override; + double startMD() const override; + double endMD() const override; + QString componentLabel() const override; + QString componentTypeLabel() const override; private: bool isDiameterSupported() const;