This commit is contained in:
Jan Möbius
2019-05-28 14:22:36 +02:00
parent f468efacd0
commit 8cffe1c3b9
8 changed files with 11 additions and 11 deletions

View File

@@ -144,7 +144,7 @@ public:
public: // inherited
bool open_mesh(const char* _filename, OpenMesh::IO::Options _opt)
bool open_mesh(const char* _filename, OpenMesh::IO::Options _opt) override
{
bool rc;
@@ -170,7 +170,7 @@ protected slots:
protected:
virtual void keyPressEvent(QKeyEvent* _event);
virtual void keyPressEvent(QKeyEvent* _event) override;
private:

View File

@@ -94,7 +94,7 @@ public:
public:
/// default constructor
ProgViewerWidget(QWidget* _parent=0)
explicit ProgViewerWidget(QWidget* _parent=0)
: MeshViewerWidget(_parent),
n_base_vertices_(0),
n_base_faces_(0),

View File

@@ -117,7 +117,7 @@ public:
protected:
/// inherited drawing method
virtual void draw_scene(const std::string& _draw_mode);
virtual void draw_scene(const std::string& _draw_mode) override;
protected:
@@ -171,7 +171,7 @@ protected: // Strip support
protected: // inherited
virtual void keyPressEvent( QKeyEvent* _event);
virtual void keyPressEvent( QKeyEvent* _event) override;
protected: