Mod: Use override etc 2
This commit is contained in:
@@ -44,10 +44,10 @@ public:
|
||||
|
||||
/** @name methods override feature */
|
||||
//@{
|
||||
short mustExecute() const;
|
||||
short mustExecute() const override;
|
||||
|
||||
/// returns the type name of the view provider
|
||||
const char* getViewProviderName() const {
|
||||
const char* getViewProviderName() const override {
|
||||
return "PartDesignGui::ViewProviderLinearPattern";
|
||||
}
|
||||
//@}
|
||||
@@ -61,10 +61,10 @@ public:
|
||||
* transformation direction will be parallel to the given edge, which must be linear
|
||||
* If Reversed is true, the direction of transformation will be opposite
|
||||
*/
|
||||
const std::list<gp_Trsf> getTransformations(const std::vector<App::DocumentObject*> );
|
||||
const std::list<gp_Trsf> getTransformations(const std::vector<App::DocumentObject*> ) override;
|
||||
|
||||
protected:
|
||||
virtual void handleChangedPropertyType(Base::XMLReader& reader, const char* TypeName, App::Property* prop);
|
||||
void handleChangedPropertyType(Base::XMLReader& reader, const char* TypeName, App::Property* prop) override;
|
||||
static const App::PropertyIntegerConstraint::Constraints intOccurrences;
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user