diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2017-03-25 09:23:05 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2017-03-25 09:33:21 +0100 |
commit | b6c700d98bf52cf4326e39a03937b16cddb3b1fe (patch) | |
tree | 1e10de995f3252a38a4b387ed80ec01822fa6896 /options/bundle.cpp | |
parent | 8ed5c071f577cc90a93c6077545cf25b1ad62ee3 (diff) |
options/bundle: appease qt creator
Diffstat (limited to 'options/bundle.cpp')
-rw-r--r-- | options/bundle.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/options/bundle.cpp b/options/bundle.cpp index 0bfeef3b..48833266 100644 --- a/options/bundle.cpp +++ b/options/bundle.cpp @@ -199,6 +199,8 @@ OPENTRACK_OPTIONS_EXPORT bundler& singleton() return ret; } +QMutex* bundle::get_mtx() const { return mtx; } + } // end options::detail OPENTRACK_OPTIONS_EXPORT std::shared_ptr<bundle_> make_bundle(const QString& name) @@ -209,6 +211,4 @@ OPENTRACK_OPTIONS_EXPORT std::shared_ptr<bundle_> make_bundle(const QString& nam return std::make_shared<bundle_>(QString()); } -QMutex* options::detail::bundle::get_mtx() const { return mtx; } - } // end options |