Browse Source

Forgot to set some members of XbeeLinkInterface to const as well

QGC4.4
Bryant 12 years ago
parent
commit
975f410672
  1. 4
      src/comm/XbeeLinkInterface.h

4
src/comm/XbeeLinkInterface.h

@ -10,8 +10,8 @@ class XbeeLinkInterface : public LinkInterface @@ -10,8 +10,8 @@ class XbeeLinkInterface : public LinkInterface
Q_OBJECT
public:
virtual QString getPortName() = 0;
virtual int getBaudRate() = 0;
virtual QString getPortName() const = 0;
virtual int getBaudRate() const = 0;
public slots:
virtual bool setPortName(QString portName) = 0;

Loading…
Cancel
Save