Commit 849337e2 authored by Lorenz Meier's avatar Lorenz Meier

Merge pull request #409 from gefink/master

override is not aviable in gcc 4.6 (only in 4.7).  Removed for compatability
parents 9ac8b1c3 9cd72124
...@@ -22,7 +22,7 @@ public: ...@@ -22,7 +22,7 @@ public:
explicit QGCComboBox(QWidget *parent = 0); explicit QGCComboBox(QWidget *parent = 0);
~QGCComboBox(); ~QGCComboBox();
virtual void setEditMode(bool editMode) override; virtual void setEditMode(bool editMode);
public slots: public slots:
/** @brief Queue parameter for sending to the MAV (add to pending list)*/ /** @brief Queue parameter for sending to the MAV (add to pending list)*/
......
...@@ -18,7 +18,7 @@ public: ...@@ -18,7 +18,7 @@ public:
explicit QGCCommandButton(QWidget *parent = 0); explicit QGCCommandButton(QWidget *parent = 0);
~QGCCommandButton(); ~QGCCommandButton();
virtual void setEditMode(bool editMode) override; virtual void setEditMode(bool editMode);
public slots: public slots:
void sendCommand(); void sendCommand();
......
...@@ -20,7 +20,7 @@ public: ...@@ -20,7 +20,7 @@ public:
explicit QGCParamSlider(QWidget *parent = 0); explicit QGCParamSlider(QWidget *parent = 0);
~QGCParamSlider(); ~QGCParamSlider();
virtual void setEditMode(bool editMode) override; virtual void setEditMode(bool editMode);
public slots: public slots:
/** @brief Queue parameter for sending to the MAV (add to pending list)*/ /** @brief Queue parameter for sending to the MAV (add to pending list)*/
......
...@@ -19,7 +19,7 @@ public: ...@@ -19,7 +19,7 @@ public:
~QGCTextLabel(); ~QGCTextLabel();
void setActiveUAS(UASInterface *uas); void setActiveUAS(UASInterface *uas);
void enableText(int num); void enableText(int num);
virtual void setEditMode(bool editMode) override; virtual void setEditMode(bool editMode);
public slots: public slots:
void writeSettings(QSettings& settings); void writeSettings(QSettings& settings);
void readSettings(const QSettings& settings); void readSettings(const QSettings& settings);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment