Browse Source

ESP8266ComponentController: Add missing const in member functions

Signed-off-by: Patrick José Pereira <patrickelectric@gmail.com>
QGC4.4
Patrick José Pereira 4 years ago committed by Don Gagne
parent
commit
3caea2fb97
  1. 2
      src/AutoPilotPlugins/Common/ESP8266ComponentController.h

2
src/AutoPilotPlugins/Common/ESP8266ComponentController.h

@ -63,7 +63,7 @@ public: @@ -63,7 +63,7 @@ public:
QStringList wifiChannels () { return _channels; }
QStringList baudRates () { return _baudRates; }
int baudIndex ();
bool busy () { return _waitType != WAIT_FOR_NOTHING; }
bool busy () const{ return _waitType != WAIT_FOR_NOTHING; }
Vehicle* vehicle () { return _vehicle; }
void setWifiSSID (QString id);

Loading…
Cancel
Save