summaryrefslogtreecommitdiffhomepage
path: root/options
diff options
context:
space:
mode:
authorStanislaw Halik <sthalik@misaki.pl>2016-08-21 22:23:17 +0200
committerStanislaw Halik <sthalik@misaki.pl>2016-08-23 00:05:15 +0200
commite425135768da9c18199ebe58e93a5b245db5ee79 (patch)
treeef0929bc93d84264573e7118b2fdee7d167e2d80 /options
parente32501906e57e1e45f4363c06f09c4a45aa44da5 (diff)
options/connector: get_mutex() should be const
Diffstat (limited to 'options')
-rw-r--r--options/connector.hpp2
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();