diff options
author | David Robillard <d@drobilla.net> | 2013-01-05 19:34:43 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2013-01-05 19:34:43 +0000 |
commit | 306b99fa5e7e18c24bb8e1ffa828ae35037174da (patch) | |
tree | 6053913a3b6fcb07548b7e826988ae28eb6c1198 /ingen/client | |
parent | ab6d64fc661a96d6b1bccb0f4b4e41cc8e2da25a (diff) | |
download | ingen-306b99fa5e7e18c24bb8e1ffa828ae35037174da.tar.gz ingen-306b99fa5e7e18c24bb8e1ffa828ae35037174da.tar.bz2 ingen-306b99fa5e7e18c24bb8e1ffa828ae35037174da.zip |
Fix graph_type of BlockModel (fix copy and paste).
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@4899 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'ingen/client')
-rw-r--r-- | ingen/client/BlockModel.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ingen/client/BlockModel.hpp b/ingen/client/BlockModel.hpp index 65d632d5..547894b4 100644 --- a/ingen/client/BlockModel.hpp +++ b/ingen/client/BlockModel.hpp @@ -48,7 +48,7 @@ public: BlockModel(const BlockModel& copy); virtual ~BlockModel(); - GraphType graph_type() const { return Node::GRAPH; } + GraphType graph_type() const { return Node::BLOCK; } typedef std::vector< SharedPtr<const PortModel> > Ports; |