summaryrefslogtreecommitdiffhomepage
path: root/options/base-value.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'options/base-value.cpp')
-rw-r--r--options/base-value.cpp17
1 files changed, 1 insertions, 16 deletions
diff --git a/options/base-value.cpp b/options/base-value.cpp
index ec96fe6c..d4ec4b6c 100644
--- a/options/base-value.cpp
+++ b/options/base-value.cpp
@@ -2,7 +2,7 @@
using namespace options;
-value_::value_(bundle const& b, const QString& name) :
+value_::value_(bundle const& b, const QString& name) noexcept :
b(b), self_name(name)
{
b->on_value_created(this);
@@ -12,18 +12,3 @@ value_::~value_()
{
b->on_value_destructed(this);
}
-
-void value_::notify() const
-{
- bundle_value_changed();
-}
-
-namespace options::detail {
-
-void set_value_to_default(value_* val)
-{
- val->set_to_default();
-}
-
-} // ns options::detail
-