From 6f73d71780753c031fe4f0ef2e3604aaf16450e7 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Thu, 2 Sep 2010 16:59:27 +0000 Subject: [PATCH] fix thinko-bug in string specialization of Property git-svn-id: svn://localhost/ardour2/branches/3.0@7731 d708f5d6-7413-0410-9779-e7cbd77b26cf --- libs/pbd/pbd/properties.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 {