Remove virtual keyword from RimWellPathCompletionInterface overrides.

* Stop them from being overriden by child classes.
This commit is contained in:
Gaute Lindkvist
2018-10-10 08:44:26 +02:00
parent 0565e6e7e1
commit 88c4aa2591
4 changed files with 20 additions and 20 deletions

View File

@@ -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;