summaryrefslogtreecommitdiffstats
path: root/src/libs/client/PatchModel.cpp
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2008-08-17 06:50:15 +0000
committerDavid Robillard <d@drobilla.net>2008-08-17 06:50:15 +0000
commite0743e9d9b15fb2731e26bf5700413c083a89186 (patch)
tree5f07e29faf213fd544f420c7d512d5e5342db059 /src/libs/client/PatchModel.cpp
parent03acefb8271d2abb5160b349d8e70687af6965fb (diff)
downloadingen-e0743e9d9b15fb2731e26bf5700413c083a89186.tar.gz
ingen-e0743e9d9b15fb2731e26bf5700413c083a89186.tar.bz2
ingen-e0743e9d9b15fb2731e26bf5700413c083a89186.zip
Tidy.
git-svn-id: http://svn.drobilla.net/lad/ingen@1415 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'src/libs/client/PatchModel.cpp')
-rw-r--r--src/libs/client/PatchModel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libs/client/PatchModel.cpp b/src/libs/client/PatchModel.cpp
index 4fe0e641..9b109bd6 100644
--- a/src/libs/client/PatchModel.cpp
+++ b/src/libs/client/PatchModel.cpp
@@ -163,7 +163,7 @@ PatchModel::remove_connection(const string& src_port_path, const string& dst_por
bool
PatchModel::enabled() const
{
- Variables::const_iterator i = _properties.find("ingen:enabled");
+ Properties::const_iterator i = _properties.find("ingen:enabled");
return (i != _properties.end() && i->second.type() == Atom::BOOL && i->second.get_bool());
}