From ae6829562ff0fa744d523faa264f5b89284e222a Mon Sep 17 00:00:00 2001 From: Bryant Date: Sun, 9 Jun 2013 01:55:12 -0700 Subject: [PATCH] Forgot to set some members of XbeeLinkInterface to const as well --- src/comm/XbeeLinkInterface.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/comm/XbeeLinkInterface.h b/src/comm/XbeeLinkInterface.h index 37fd924991..d359f579d7 100644 --- a/src/comm/XbeeLinkInterface.h +++ b/src/comm/XbeeLinkInterface.h @@ -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; -- GitLab