summaryrefslogtreecommitdiff
path: root/libs/pbd/pbd/properties.h
diff options
context:
space:
mode:
authorPaul Davis <paul@linuxaudiosystems.com>2010-09-02 16:59:27 +0000
committerPaul Davis <paul@linuxaudiosystems.com>2010-09-02 16:59:27 +0000
commit6f73d71780753c031fe4f0ef2e3604aaf16450e7 (patch)
tree72f79c5843729a9ad2cb4d3d4beda75f819176a9 /libs/pbd/pbd/properties.h
parent6f61058723b2ebc77da88bb964296f6576563868 (diff)
fix thinko-bug in string specialization of Property<T>
git-svn-id: svn://localhost/ardour2/branches/3.0@7731 d708f5d6-7413-0410-9779-e7cbd77b26cf
Diffstat (limited to 'libs/pbd/pbd/properties.h')
-rw-r--r--libs/pbd/pbd/properties.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/libs/pbd/pbd/properties.h b/libs/pbd/pbd/properties.h
index fa8e4cf3eb..01aed7cef0 100644
--- a/libs/pbd/pbd/properties.h
+++ b/libs/pbd/pbd/properties.h
@@ -291,7 +291,7 @@ public:
private:
std::string to_string (std::string const& v) const {
- return _current;
+ return v;
}
std::string from_string (std::string const& s) const {