diff options
| author | Stanislaw Halik <sthalik@misaki.pl> | 2016-08-21 22:23:17 +0200 | 
|---|---|---|
| committer | Stanislaw Halik <sthalik@misaki.pl> | 2016-08-23 00:05:15 +0200 | 
| commit | e425135768da9c18199ebe58e93a5b245db5ee79 (patch) | |
| tree | ef0929bc93d84264573e7118b2fdee7d167e2d80 | |
| parent | e32501906e57e1e45f4363c06f09c4a45aa44da5 (diff) | |
options/connector: get_mutex() should be const
| -rw-r--r-- | options/connector.hpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/options/connector.hpp b/options/connector.hpp index 504c636d..b9b1259f 100644 --- a/options/connector.hpp +++ b/options/connector.hpp @@ -27,7 +27,7 @@ class OPENTRACK_OPTIONS_EXPORT connector  protected:      void notify_values(const QString& name) const;      void notify_all_values() const; -    virtual QMutex* get_mtx() = 0; +    virtual QMutex* get_mtx() const = 0;  public:      connector(); | 
