diff options
Diffstat (limited to 'opentrack-compat/options.cpp')
-rw-r--r-- | opentrack-compat/options.cpp | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/opentrack-compat/options.cpp b/opentrack-compat/options.cpp index 05ae692a..4106f783 100644 --- a/opentrack-compat/options.cpp +++ b/opentrack-compat/options.cpp @@ -175,11 +175,6 @@ opts::opts(const QString &name) : b(bundle(name)) { } -pbundle bundle(const QString& name) -{ - return detail::singleton().bundle(name); -} - custom_type_initializer::custom_type_initializer() { qDebug() << "options: registering stream operators"; @@ -188,7 +183,7 @@ custom_type_initializer::custom_type_initializer() QMetaType::registerDebugStreamOperator<slider_value>(); } -custom_type_initializer custom_type_initializer::singleton = custom_type_initializer(); +custom_type_initializer custom_type_initializer::singleton; namespace detail { |