diff options
-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 |