From 975f41067229245752f23de45b80ca4a7e28642d 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 37fd92499..d359f579d 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; -- 2.22.0