diff options
Diffstat (limited to 'src/client')
-rw-r--r-- | src/client/PatchModel.cpp | 2 | ||||
-rw-r--r-- | src/client/PatchModel.hpp | 5 |
2 files changed, 3 insertions, 4 deletions
diff --git a/src/client/PatchModel.cpp b/src/client/PatchModel.cpp index b79c8edd..c27ff718 100644 --- a/src/client/PatchModel.cpp +++ b/src/client/PatchModel.cpp @@ -168,7 +168,7 @@ PatchModel::enabled() const } void -PatchModel::set(const string& key, const Atom& value) +PatchModel::set_property(const std::string& key, const Atom& value) { ResourceImpl::set_property(key, value); if (key == "ingen:polyphony") diff --git a/src/client/PatchModel.hpp b/src/client/PatchModel.hpp index 4e5890ef..35b11e15 100644 --- a/src/client/PatchModel.hpp +++ b/src/client/PatchModel.hpp @@ -19,7 +19,6 @@ #define PATCHMODEL_H #include <cassert> -#include <list> #include <string> #include <sigc++/sigc++.h> #include "raul/SharedPtr.hpp" @@ -28,7 +27,7 @@ #include "ConnectionModel.hpp" -using std::list; using std::string; +using std::string; namespace Ingen { namespace Client { @@ -64,7 +63,7 @@ public: signal_editable.emit(e); } } - virtual void set(const string& key, const Atom& value); + virtual void set_property(const string& key, const Atom& value); // Signals sigc::signal<void, SharedPtr<NodeModel> > signal_new_node; |